Ветвление if else

using System;
using System.Collections.Generic;
using System.Text;

namespace HELLOWORLD
{
    class Program
    {
        static void Main(string[] args)
        {

            if (2 < 1)
            {
                Console.WriteLine("2<1");
            }
            else
            {
                Console.WriteLine("2>1");
              
            }
            Console.ReadLine();


        }
    }
}