Hello, my code seems fine but I somehow it manages not to work. And If you look at the output you can find that there is 10 lines that should be displayed with their numbers... I'm a little confused
int count = 1;
        int j = 1;
while(j < 11){
  while(count <= 10) {
System.out.print(count*j +" ");
count++;

  }

            j++;
            System.out.println();

}