Outside range?
We would like to detect if a number is outside a given range.
Given the endpoints of the range: l and r, determine if x is outside the range [l; r] (inclusive). Print Outside if x is outside the given range, and Inside if it is inside.
Input | Output |
|---|---|
4 | Inside |
4 | Outside |
Constraints
Time limit: 2 seconds
Memory limit: 512 MB
Output limit: 1 MB