s=list(input()) l=list(set(s)) s.sort() l.sort() if len(s)==len(l): print("YES") else: print("NO")