using System;
public class Program
{
public static void Main()
int first = 5;
int second = 3;
if (first == second){
Console.WriteLine("These two numbers are equal");}
else
if (first > second)
Console.WriteLine("First number is grater");}
else{
Console.WriteLine("The second number is grater");}
}