public static void Main(string[] args)
Console.WriteLine("Enter Number A");
int a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter Number B");
int b = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter Number C");
int c = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("A multiplied by B multiplied by c is " + d);