public static void Main()
int[,] tablerow = new int[13, 13];
for (int i = 1; i <= 12; i++)
Console.WriteLine("Table of " + i);
for (int j = 1; j <= 12; j++)
Console.WriteLine(i + " x " + j + " = " + tablerow[i, j]);
Console.WriteLine("Sum of Table " + i + " = " + sum + " --------------------------\n");