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