#define _USE_MATH_DEFINES // for C++ #include "bits/stdc++.h" #define LL long long #define NUM 1000000007 using namespace std; int main() { string s; cin >> s; auto result = s.find("575"); if (result != string::npos) { cout << "YES" << endl; } else { cout << "NO" << endl; } }