{"raw_statement":[{"iden":"problem statement","content":"You are given three integers $A$, $B$ and $C$. Determine whether $C$ is not less than $A$ and not greater than $B$."},{"iden":"constraints","content":"*   $-100≤A,B,C≤100$\n*   $A$, $B$ and $C$ are all integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$A$ $B$ $C$"},{"iden":"sample input 1","content":"1 3 2"},{"iden":"sample output 1","content":"Yes\n\n$C=2$ is not less than $A=1$ and not greater than $B=3$, and thus the output should be `Yes`."},{"iden":"sample input 2","content":"6 5 4"},{"iden":"sample output 2","content":"No\n\n$C=4$ is less than $A=6$, and thus the output should be `No`."},{"iden":"sample input 3","content":"2 2 2"},{"iden":"sample output 3","content":"Yes"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}