public static void Main()
Console.Write("Find the largest of three numbers:\n");
Console.Write("------------------------------------");
Console.Write("Input the 1st number :");
num1 = Convert.ToInt32(Console.ReadLine());
Console.Write("Input the 2nd number :");
num2 = Convert.ToInt32(Console.ReadLine());
Console.Write("Input the 3rd number :");
num3 = Convert.ToInt32(Console.ReadLine());
Console.Write("The 1st Number is the greatest among three. \n\n");
Console.Write("The 3rd Number is the greatest among three. \n\n");
Console.Write("The 2nd Number is the greatest among three \n\n");
Console.Write("The 3rd Number is the greatest among three \n\n");