#abc237a. [abc237_a]Not Overflow
[abc237_a]Not Overflow
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.