using System; class Operators { static void Main() { bool a = 4 > 5; Console.WriteLine("{0}", a); } }