#include <stdio.h> int main() { int a; scanf("%d", &a); if (a >= 60) { printf("YES\n"); } else { printf("NO\n"); } return 0; }