A - Between Two Integers
Editorial
/
Time Limit: 2 sec / Memory Limit: 256 MB
配点 : 100 点
問題文
3 つの整数 A,B,C が与えられます。
整数 C が A 以上 かつ B 以下であるかを判定してください。
制約
- -100≦A,B,C≦100
- A,B,C は全て整数
入力
入力は以下の形式で標準入力から与えられる。
A B C
出力
条件を満たす場合はYes
、そうでない場合はNo
を出力せよ。
入力例 1
1 3 2
出力例 1
Yes
整数 C=2 は A=1 以上 かつ、B=3 以下 であるためYes
と出力します。
入力例 2
6 5 4
出力例 2
No
整数 C=4 は A=6 以上ではないためNo
と出力します。
入力例 3
2 2 2
出力例 3
Yes
Score : 100 points
Problem Statement
You are given three integers A, B and C. Determine whether C is not less than A and not greater than B.
Constraints
- -100≤A,B,C≤100
- A, B and C are all integers.
Input
Input is given from Standard Input in the following format:
A B C
Output
If the condition is satisfied, print Yes
; otherwise, print No
.
Sample Input 1
1 3 2
Sample Output 1
Yes
C=2 is not less than A=1 and not greater than B=3, and thus the output should be Yes
.
Sample Input 2
6 5 4
Sample Output 2
No
C=4 is less than A=6, and thus the output should be No
.
Sample Input 3
2 2 2
Sample Output 3
Yes