#include<iostream> #define ll long long using namespace std; void solve() { ll n; cin >> n; ll t; t = n + 7; if (t > 170) cout << "YES "; else cout << "NO "; } int main() { solve(); return 0; }