using System;
public class Program
{
public static void Main()
//int x = 10 ;
//int y = 9 ;
//Console.WriteLine(x>y);
int x = 10;
int y = 9;
if (x > y)
Console.WriteLine("x is greater than y");
}