B - Varied Editorial /

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 200

問題文

英小文字からなる文字列 S が与えられます。S に含まれる文字がすべて異なるか判定してください。

制約

  • 2 ≤ |S| ≤ 26, ここで |S|S の長さを表す。
  • S は英小文字のみからなる。

入力

入力は以下の形式で標準入力から与えられる。

S

出力

S に含まれる文字がすべて異なる場合は yes(英小文字)、そうでない場合は no と出力せよ。


入力例 1

uncopyrightable

出力例 1

yes

入力例 2

different

出力例 2

no

入力例 3

no

出力例 3

yes

Score : 200 points

Problem Statement

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

Constraints

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

Input

Input is given from Standard Input in the following format:

S

Output

If all the characters in S 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