atcoder#ABC237A. [ABC237A] Not Overflow
[ABC237A] Not Overflow
Score : points
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
.
10
Yes
is between and , so Yes
should be printed.
-9876543210
No
is less than , so No
should be printed.
483597848400000
No
is greater than , so No
should be printed.