Competitions
Week 2 Conditionals Part 1
Inside the interval
Determine whether the number x belongs to the interval [a; b]. Number x belongs to the interval [a; b] if a \le x \le b.
Input data
Three integers x, a, b, not greater than 10^9 by absolute value.
Output data
Print "YES", if the number x belongs to the interval [a; b]. Otherwise print "NO".
Examples
Input example #1
4 2 6
Output example #1
YES
Input example #2
5 10 15
Output example #2
NO