public static void Main()
Console.WriteLine("Please enter your choice of number that you want to print multiplication table");
int Number = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\nYou have entererd: {0}\n\nPlease enter your choice of number that the MULTIPLICATION TABLE needs to print upto?. Like upto 10, 20, 30 or 40 etc...", Number);
int Target = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\nPrinting MULTIPLICATION TABLE for {0}, upto - {1}", Number, Target);
for (int i = 1; i <= Target; i++)
Console.WriteLine("{0} X {1} = {2}", Number, i, Result);