using System;
int input = Convert.ToInt32(Console.ReadLine());
for(; input <= 9; input++) { for(int j = 1; j <=9; j++) { Console.WriteLine(input + " " + j + " = " + (input j)); } if (input <= 10) break; }