from collections import defaultdict cnt = defaultdict(int) t = "kyoprotenkei90" for c in t: cnt[c] += 1 s = input() for c in s: cnt[c] -= 1 if all(v == 0 for k, v in cnt.items()): print("Yes") else: print("No")