#abc324a. A - Same
A - Same
Score : points
问题描述
你将得到 个整数 。
如果它们的值全都相等,输出 Yes
;否则,输出 No
。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
You are given integers .
If their values are all equal, print Yes
; otherwise, print No
.
Constraints
- All input values are integers.
Input
The input is given from Standard Input in the following format:
Output
Print a single line containing Yes
if the values of the given are all equal, and No
otherwise.
Sample Input 1
3
3 2 4
Sample Output 1
No
We have , so you should print No
.
Sample Input 2
4
3 3 3 3
Sample Output 2
Yes
We have , so you should print Yes
.
Sample Input 3
10
73 8 55 26 97 48 37 47 35 55
Sample Output 3
No
update @ 2024/3/10 01:45:36