class Table { public static void main (String ar[]) { int a,k; a=Integer.parseInt(ar[0]); for(k=1;k<=10;k++) { System.out.println("Table :"+a*k); } } }