using System;
public class Program
{
public static void Main()
int a = 1;
int b = 2;
//Which one is greather?
bool greatherAB = (a > b );
//is "a" equal to 1?
bool equalA1 = (a == 1);
// Print the results on the console
if (greatherAB)
Console.WriteLine("A > B");
}
else
Console.WriteLine("A <= B");
Console.WriteLine("greatherAB = " + greatherAB);
Console.WriteLine("equalA1 = " + equalA1);