import java.io.*;

public class Solution {
    public static void main(String[] args) throws Exception {
       int a=1;

       while (a<11);
       { int b=1;
         while (b<10) {

        System.out.print(a*b +" ");
        b++;

         }

          System.out.println(a*b);
          a++;
            }//напишите тут ваш код
    }
}