word = "kyoprotenkei90" s = list(input()) for i in word: if i in s: s.remove(i) if len(s) == 0: print("Yes") else: print("No")