public static void Main()
Console.WriteLine("Enter first number:");
a = Int32.Parse(Console.ReadLine());
Console.WriteLine("Enter second number:");
b = Int32.Parse(Console.ReadLine());
Console.WriteLine("{0} is greather than {1}", a, b);
Console.WriteLine("{0} is greather than {1}", b, a);
Console.WriteLine("{0} and {1} are equal", a, b);