from collections import Counter, defaultdict cnt_dict = defaultdict(int) T = "kyoprotenkei90" for t in T: cnt_dict[t] += 1 S = input() counter = Counter(S) for word in counter.keys(): if counter[word] != cnt_dict[word]: print("No") exit() print("Yes")