100 atcoder#ABC155A. [ABC155A] Poor

[ABC155A] Poor

Score: 100100 points

Problem Statement

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 AA, BB, and CC. If this triple is poor, print Yes; otherwise, print No.

Constraints

  • AA, BB, and CC are all integers between 11 and 99 (inclusive).

Input

Input is given from Standard Input in the following format:

AA BB CC

Output

If the given triple is poor, print Yes; otherwise, print No.

5 7 5
Yes

AA and CC are equal, but BB is different from those two numbers, so this triple is poor.

4 4 4
No

AA, BB, and CC are all equal, so this triple is not poor.

4 9 6
No
3 3 4
Yes