I don't understand why this code don't work
package com.codegym.task.task04.task0434;
/*
Multiplication table
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
int j = 1;
int i = 1;
while(j<11){
while(i<11){
System.out.print(i*j);
i++;
}
j++;
System.out.println();
}
//write your code here
}
}