S = input() L = len(set(S)) if L == len(S) and L <= 26: print("YES") else: print("NO")