Could someone please tell me why below code doesn't work? public class Solution { public static void main(String[] args) { for(i=1; i<=10; i++) { for(j=2; j<=10; j++) { System.out.print(i*j + " "); } System.out.println(); } }