from collections import Counter atypical = Counter("atypical") s = Counter(input().strip().lower()) for char, count in atypical.items(): if s[char] < count: print("No") break else: print("Yes")