#abc237a. A - Not Overflow
A - Not Overflow
Score : points
问题描述
你将获得一个整数 。如果 的值在 和 (包含这两个数)之间,输出 Yes
;否则,输出 No
。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
You are given an integer . If is between and (inclusive), print Yes
; otherwise, print No
.
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
If is between and (inclusive), print Yes
; otherwise, print No
.
Sample Input 1
10
Sample Output 1
Yes
is between and , so Yes
should be printed.
Sample Input 2
-9876543210
Sample Output 2
No
is less than , so No
should be printed.
Sample Input 3
483597848400000
Sample Output 3
No
is greater than , so No
should be printed.
update @ 2024/3/10 10:15:01