#D12974. Poor
Poor
Poor
A triple of numbers is said to be poor when two of those numbers are equal but the other number is different from those two numbers.
You will be given three integers A, B, and C. If this triple is poor, print Yes
; otherwise, print No
.
Constraints
- A, B, and C are all integers between 1 and 9 (inclusive).
Input
Input is given from Standard Input in the following format:
A B C
Output
If the given triple is poor, print Yes
; otherwise, print No
.
Examples
Input
5 7 5
Output
Yes
Input
4 4 4
Output
No
Input
4 9 6
Output
No
Input
3 3 4
Output
Yes
inputFormat
Input
Input is given from Standard Input in the following format:
A B C
outputFormat
Output
If the given triple is poor, print Yes
; otherwise, print No
.
Examples
Input
5 7 5
Output
Yes
Input
4 4 4
Output
No
Input
4 9 6
Output
No
Input
3 3 4
Output
Yes
样例
3 3 4
Yes