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