public static void Main()
Console.WriteLine("Please enter the first number: ");
Num1 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Please enter the second number: ");
Num2 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("The sum of " + Num1 + " and " + Num2 + " is " + Num3);