public static void Main()
Console.WriteLine("Enter first number A");
string valA = Console.ReadLine();
int A = Convert.ToInt32(valA);
Console.WriteLine("Enter second number B");
string valB = Console.ReadLine();
int B = Convert.ToInt32(valB);
Console.WriteLine( "A is less than B ");
Console.WriteLine("A is greater than B");
Console.WriteLine("A and B are the same");