#abc063b. [abc063_b]Varied

[abc063_b]Varied

Problem Statement

You are given a string SS consisting of lowercase English letters. Determine whether all the characters in SS are different.

Constraints

  • 2S262 ≤ |S| ≤ 26, where S|S| denotes the length of SS.
  • SS consists of lowercase English letters.

Input

Input is given from Standard Input in the following format:

SS

Output

If all the characters in SS are different, print yes (case-sensitive); otherwise, print no.


Sample Input 1

uncopyrightable

Sample Output 1

yes

Sample Input 2

different

Sample Output 2

no

Sample Input 3

no

Sample Output 3

yes