eolymp
Competitions

Week 2 Conditionals Part 1

Outside the interval

Time limit 1 second
Memory limit 128 MiB

Determine whether the number x is located outside the interval [a; b]. Number x is located outside the interval [a; b] if either x < a or x > b.

Input data

Three integers x, a, b, not greater than 10^9 by absolute value.

Output data

Print "OUT" if the number x is located outside the interval [a; b]. Otherwise print "IN".

Examples

Input example #1
7 2 7
Output example #1
IN
Input example #2
-5 1 1
Output example #2
OUT