Problem2865--【Div4】判断三个数是否两两相等(简单版)

2865: 【Div4】判断三个数是否两两相等(简单版)

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

给定三个整数a,b,c,请判断这三个数是否两两相等,如果是,打印Yes,否则打印No
例如:
输入
1 2 2
输出
No


输入
9 9 9
输出
Yes

Sample Input Copy

3 3 3

Sample Output Copy

Yes

Source/Category

条件 if Div4