using System; namespace MyApplication { class Program { static void Main(string[] args) { if (20 > 18) { Console.WriteLine("20 is greater than 18"); } } } }