public static void Main()
Console.WriteLine("Which times table would you like to output?");
int TimesTables = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How far would you like to go?");
int numOfTimes = Convert.ToInt32(Console.ReadLine());
total = i * TimesTables ;
Console.WriteLine(i + " x " + TimesTables + " = " + total);