using System;
public class Program
{
public static void Main()
int a,b;
Console.WriteLine("Enter the 2 Values");
a=Convert.ToInt32(Console.ReadLine());
b=Convert.ToInt32(Console.ReadLine());
if(a>b)
Console.WriteLine("A is greater than B");
else
Console.WriteLine("B is greater than A");
}