#include<iostream> using namespace std; int main() { int c; cin>>c; if(c>=60) { cout<<"YES"; } if(c<60) { cout<<"NO"; } return 0; }