Score : $100$ points
You are given three integers $A$, $B$ and $C$. Determine whether $C$ is not less than $A$ and not greater than $B$.
Input is given from Standard Input in the following format:
$A$ $B$ $C$
If the condition is satisfied, print Yes
; otherwise, print No
.
1 3 2
Yes
$C=2$ is not less than $A=1$ and not greater than $B=3$, and thus the output should be Yes
.
6 5 4
No
$C=4$ is less than $A=6$, and thus the output should be No
.
2 2 2
Yes