08判断区间

判断一个数a是否在区间[x, y]内, 若是则输出"yes", 否则输出"no"(不包含双引号).

Input

三个整数a, x, y (x<y)

Output

如果a在[x,y]内, 输出"yes", 否则输出"no". 

Examples

Input

5 1 10

Output

yes

来源

lema
Time limit 1 second
Memory limit 128 MB
讨论 统计