AT_abc455_a [ABC455A] 455
Description
You are given integers $ A, B, C $ . If $ A \neq B $ and $ B = C $ , output `Yes`; otherwise, output `No`.
Input Format
The input is given from Standard Input in the following format:
> $ A $ $ B $ $ C $
Output Format
Output `Yes` or `No` according to the instructions in the problem statement.
Explanation/Hint
### Sample Explanation 1
Since $ 4 \neq 5 $ and $ 5 = 5 $ , output `Yes`.
### Sample Explanation 2
Although $ 1 \neq 3 $ , we don't have $ 3 = 7 $ , so output `No`.
### Constraints
- $ 1 \leq A, B, C \leq 9 $
- All input values are integers.