Score : $100$ points
You are given an integer $N$.
If $N$ is between $-2^{31}$ and $2^{31}-1$ (inclusive), print Yes
; otherwise, print No
.
Input is given from Standard Input in the following format:
$N$
If $N$ is between $-2^{31}$ and $2^{31}-1$ (inclusive), print Yes
; otherwise, print No
.
10
Yes
$10$ is between $-2^{31}$ and $2^{31}-1$, so Yes
should be printed.
-9876543210
No
$-9876543210$ is less than $-2^{31}$, so No
should be printed.
483597848400000
No
$483597848400000$ is greater than $2^{31}-1$, so No
should be printed.