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