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