#include <stdio.h>

int main() {
    float h;
    scanf("%f", &h);
    if (h >= 1.5) {
        printf("100\n");
    } else {
        printf("60\n");
    }
    return 0;
}
/**************************************************************
	Problem: 1037
	User: fuhoubin
	Language: C++
	Result: Wrong Answer
****************************************************************/