public static void Main()
Console.Write("Hector L. Galvan Sadoval");
Console.Write("Display the multiplication table vertically from 1 to n:\n");
Console.Write("---------------------------------------------------------");
Console.Write("Input upto the table number starting from 1 : ");
n= Convert.ToInt32(Console.ReadLine());
Console.Write("Multiplication table from 1 to {0} \n",n);
Console.Write("{0}x{1} = {2}, ",j,i,i*j);
Console.Write("{0}x{1} = {2}",j,i,i*j);