public static void Main()
Console.WriteLine("HI Please Write a number and I will tell you the times tables from 1-10 of that number");
Number = int.Parse(Console.ReadLine());
for(int i = 1; i<=10; i++)
Console.WriteLine(Number+ " X + "+ i + " = " + Result);