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