A - Not Overflow
Editorial
/


Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
整数 が与えられます。
が 以上かつ 未満ならば Yes
を、そうでないならば No
を出力してください。
制約
- は整数である。
入力
入力は以下の形式で標準入力から与えられる。
出力
が 以上かつ 未満ならば Yes
を、そうでないならば No
を出力せよ。
入力例 1Copy
Copy
10
出力例 1Copy
Copy
Yes
は 以上かつ 未満であるので、Yes
を出力します。
入力例 2Copy
Copy
-9876543210
出力例 2Copy
Copy
No
は 未満であるので、No
を出力します。
入力例 3Copy
Copy
483597848400000
出力例 3Copy
Copy
No
は 以上であるので、No
を出力します。
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
.
Sample Input 1Copy
Copy
10
Sample Output 1Copy
Copy
Yes
is between and , so Yes
should be printed.
Sample Input 2Copy
Copy
-9876543210
Sample Output 2Copy
Copy
No
is less than , so No
should be printed.
Sample Input 3Copy
Copy
483597848400000
Sample Output 3Copy
Copy
No
is greater than , so No
should be printed.