#abc154c. [abc154_c]Distinct or Not
[abc154_c]Distinct or Not
Problem Statement
Given is a sequence of integers . If its elements are pairwise distinct, print YES
; otherwise, print NO
.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
If the elements of the sequence are pairwise distinct, print YES
; otherwise, print NO
.
Sample Input 1
5
2 6 1 4 5
Sample Output 1
YES
The elements are pairwise distinct.
Sample Input 2
6
4 1 3 1 6 2
Sample Output 2
NO
The second and fourth elements are identical.
Sample Input 3
2
10000000 10000000
Sample Output 3
NO