using System;
public class Program
{
public static void Main()
double dohod = double.Parse(Console.ReadLine());
if (dohod <= 1000 )
{ Console.WriteLine("неприемлив"); }
else if (dohod <= 2500)
{ Console.WriteLine("нисък"); }
else if (dohod <= 3500)
{ Console.WriteLine("приемлив"); }
else if (dohod <= 5500)
{ Console.WriteLine("добър"); }
else if (dohod => 5500)
{ Console.WriteLine("много добър");
}