#include using namespace std; using ll = long long; using ull = unsigned long long; using ld = long double; template inline bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template inline bool chmin(T &a, const T &b) { if (a > b) { a = b; return true; } return false; } // #include // using namespace atcoder; // using mint = modint1000000007; // using mint = modint998244353; // const int MOD = 1000000007; // const int MOD = 998244353; int main() { cin.tie(nullptr); ios_base::sync_with_stdio(false); string t = "kyoprotenkei90"; sort(t.begin(), t.end()); string s; cin >> s; sort(s.begin(), s.end()); cout << (s == t ? "Yes" : "No") << endl; return 0; }