using System;
public class Program
{
public static void Main()
double h=0; //身高
Console.WriteLine("身高 cm");
h = double.Parse(Console.ReadLine()) / 100;
if(h <= 120){
Console.WriteLine("免費入場 ");
}
else if(h > 121 && h < 149){
Console.WriteLine("半價入場 ");
else if(h >=150){
Console.WriteLine("全票入場 ");