using System;
public class Program
{
public static void Main()
var a = int.Parse(Console.ReadLine());
if ( a <= 100 )
Console.WriteLine("Less than 100");
}
else if ( a >= 100 && a <= 200 )
Console.WriteLine("Between 100 and 200");
else if ( a >= 200 )
Console.WriteLine("Above 200");