S = input()
T = "kyoprotenkei90"
if len(S) == len(T) and set(S) == set(T):
    print("Yes")
else:
    print("No")