using System;
public class Program
{
public static void Main()
int a = 1,b = 2 ;
bool mayoAB = (a>b);
bool igualAB = (a==b);
if(mayoAB){
Console.WriteLine("A>B");
}
else{
Console.WriteLine("A<=B");
Console.WriteLine("mayor AB = "+mayoAB);
Console.WriteLine("igual AB = "+igualAB);