using System;
public class Program
{
public static void Main()
int x, y;
Console.Write("Enter number for x: ");
x = int.Parse(Console.ReadLine());
Console.Write("Enter number for y: ");
y = int.Parse(Console.ReadLine());
if (x > y)
Console.Write("x is greater than y");
}
else
Console.Write("x is less than y");