#include <iostream> using namespace std; int main() { // your code goes here int x; cin >> x; if (x >= 750) cout << "YES "; else cout << "NO "; return 0; }