#abc061a. [abc061_a]Between Two Integers
[abc061_a]Between Two Integers
Problem Statement
You are given three integers , and . Determine whether is not less than and not greater than .
Constraints
- , and are all integers.
Input
Input is given from Standard Input in the following format:
Output
If the condition is satisfied, print Yes
; otherwise, print No
.
Sample Input 1
1 3 2
Sample Output 1
Yes
is not less than and not greater than , and thus the output should be Yes
.
Sample Input 2
6 5 4
Sample Output 2
No
is less than , and thus the output should be No
.
Sample Input 3
2 2 2
Sample Output 3
Yes