using System;
public class Program
{
public static void Main()
int a=10;
int b=71;
if(b<a)
Console.WriteLine("a is bigger");
else if(b==a)
Console.WriteLine("They are the same");
else
Console.WriteLine("b is bigger");
}