public static void Main()
Console.WriteLine("Question 3: Write a program that finds the biggest of three intergers, using nested if statements.");
Console.WriteLine("Number 1 is the largest of the three numbers: " + num1 + " > " + num2 + " and " + num3);
Console.WriteLine("Number 3 is the largest of the three numbers: " + num3 + " > " + num1 + " and " + num2);
Console.WriteLine("Number 2 is the largest of the three numbers: " + num2 + " > " + num1 + " and " + num3);
Console.WriteLine("Number 3 is the largest of the three numbers: " + num3 + " > " + num1 + " and " + num2);