using System;
public class Program
{
public static void Main()
int a = 2;
int b = 4;
Console.WriteLine(a > b ? "a > b" : "b <= a");
}