s=input() alphabet=[] for i in s: if i not in alphabet: alphabet.append(i) if len(s) == len(alphabet): print('YES') else: print('NO')