using System;
public class Program
{
public static void Main()
int x=20;
int y = 18;
if (x > y)
Console.WriteLine("X is greater than Y");
}
else
Console.WriteLine("Y is greater than X");