from collections import Counter s = input().strip() target = "kyoprotenkei90" if Counter(s) == Counter(target): print("Yes") else: print("No")