#include <iostream>
using namespace std;

int main() {
    float height;
    // 读取输入的身高
    cin >> height;
    // 根据身高判断门票价格
    if (height < 1.3) {
        cout << 60;
    } else {
        cout << 120;
    }
    return 0;
}    
/**************************************************************
	Problem: 1037
	User: panyuchen
	Language: C++
	Result: Wrong Answer
****************************************************************/