class example { public static void main(String args[]){ for (int i = 1; i < 11; i++){ for (int j = 1; j < 11; j++){ int n = j * i; System.out.print( n); } System.out.println(); } } }