7328: ABC237 —— A - Not Overflow
[Creator : ]
Description
You are given an integer $N$.
If $N$ is between $-2^{31}$ and $2^{31}-1$ (inclusive), print Yes; otherwise, print No.
If $N$ is between $-2^{31}$ and $2^{31}-1$ (inclusive), print Yes; otherwise, print No.
Input
Input is given from Standard Input in the following format:
$N$
$N$
Output
If $N$ is between $-2^{31}$ and $2^{31}-1$ (inclusive), print Yes; otherwise, print No.
Constraints
$-2^{63}≤N<2^{63}$
$N$ is an integer.
$N$ is an integer.
Sample 1 Input
10
Sample 1 Output
Yes
10 is between $-2^{31}$ and $2^{31}-1$, so Yes should be printed.
Sample 2 Input
-9876543210
Sample 2 Output
No
−9876543210 is less than $-2^{31}$, so No should be printed.
Sample 3 Input
483597848400000
Sample 3 Output
No