4 lines
116 B
Python
4 lines
116 B
Python
words = input().strip().split()
|
|
unique_words = set(words)
|
|
print("yes" if len(words) == len(unique_words) else "no")
|