public static void Main()
Console.Write("Find the greatest Numbers:\n");
Console.Write("Input the 1st number :");
N1 = Convert.ToInt32(Console.ReadLine());
Console.Write("Input the 2nd number :");
N2 = Convert.ToInt32(Console.ReadLine());
Console.Write("The 1st Number is the greatest");
Console.Write("The 2nd Number is the greatest");