public static void Main()
Console.WriteLine("Jaime Perez Zarate 1E");
Console.Write("Introduce the first number to multiply: ");
num1 = Convert.ToInt32(Console.ReadLine());
Console.Write("Introduce the second number to multiply: ");
num2 = Convert.ToInt32(Console.ReadLine());
Console.Write("Introduce the third number to multiply: ");
num3 = Convert.ToInt32(Console.ReadLine());
int result = num1 * num2 * num3;
Console.WriteLine("{0} x {1} x {2} = {3}",
num1, num2, num3, result);