Files
kattis/nodup.py
2023-06-24 21:15:31 +02:00

4 lines
116 B
Python

words = input().strip().split()
unique_words = set(words)
print("yes" if len(words) == len(unique_words) else "no")