Console.Write("Input the first number to multiply: ");
int num1 = int.Parse(Console.ReadLine());
Console.Write("Input the second number to multiply: ");
int num2 = int.Parse(Console.ReadLine());
Console.Write("Input the third number to multiply: ");
int num3 = int.Parse(Console.ReadLine());
int result = num1 * num2 * num3;
Console.WriteLine($"{num1} x {num2} x {num3} = {result}");