#define _GLIBCXX_DEBUG #include using namespace std; int main() { string S; cin >> S; string T = "kyoprotenkei90"; for(int i = 0; i < 14; i++){ bool flag = false; for(int j = 0; j < 14; j++){ if(S[i] == T[j]) flag = true; } if(!flag){ cout << "No" << endl; return 0; } } cout << "Yes" << endl; }