public static void Main()
Console.WriteLine("Hi! Please write a number and I'll tell you the times table from 1-10 of that number.");
num= int. Parse(Console.ReadLine());
for (int i = 1; i <= 10; i++)
Console.WriteLine(num + " x " + i + " = " + (num * i));