public static void Main()
Console.Write("Display the multiplication table:\n");
Console.Write("-----------------------------------");
Console.Write("Input the number (Table to be calculated) : ");
n= Convert.ToInt32(Console.ReadLine());
Console.Write("{0} X {1} = {2} \n",n,j,n*j);
Console.WriteLine("\n= BY: JOSÉ ENRIQUE PADRÓN GÓMEZ =");