using System;
public class Program
{
//動遊園門票200元,120公分免費,120~150公分半價,150公分以上全票
public static void Main()
//1 決定參數,型別
int t = 0;
int m = 200;
//2 讀取消費者身高
t = int.Parse(Console.ReadLine());
Console.WriteLine("票價金額:"+m);
if(t<=120){
Console.WriteLine("打折票價金額 "+m*0);
}
else if (t>120&t<=150){
Console.WriteLine("打折票價金額 "+m*0.5);
else
Console.WriteLine("票價金額 "+(m));