public static void Main()
Console.WriteLine("Enter 2 numbers.");
a=Convert.ToInt32(Console.ReadLine());
b=Convert.ToInt32(Console.ReadLine());
Console.WriteLine(a+" > "+b);
Console.WriteLine(b+" > "+a);
Console.WriteLine("Enter 3 numbers.");
x=Convert.ToInt32(Console.ReadLine());
y=Convert.ToInt32(Console.ReadLine());
z=Convert.ToInt32(Console.ReadLine());
Console.WriteLine(x+" is the greatest integer.");
Console.WriteLine(z+" is the greatest integer.");
Console.WriteLine(y+" is the greatest integer.");
Console.WriteLine(z+" is the greatest integer.");
Console.WriteLine("Enter the temperature of H20. Is the H20 in liquid water state?");
F=Convert.ToInt32(Console.ReadLine());
Console.WriteLine("H20 is in a liquid water state.");
Console.WriteLine("H20 is NOT in a liquid water state.");
Random random=new Random();
D=random.Next(1000,10000);
Console.WriteLine("The 2 random numbers are "+R+" and "+D+".");