ls = input().split() tf = True for i in ls: if len(i) != 1 or 97 > ord(i) or ord(i) > 122: tf = False break if tf: print("Yes") else: print("No")