public static void Main()
Console.WriteLine("Times Table Generator");
Console.WriteLine(new String('-',35));
Console.WriteLine("Enter in the size of the table:");
int num = Convert.ToInt32(Console.ReadLine());
for (column = 1; column <= num;column++)
for (row = 1; row <= num; row++)
Console.Write("{0,5}{1}", product);