#include using namespace std; int main(){ string S; string T = "kyoprotenkei90"; cin >> S; sort(S.begin(),S.end()); sort(T.begin(),T.end()); if(S == T) cout << "Yes" << endl; else cout << "No" << endl; }