Skip to content
C

Is It In Range?

Easyjava

Read three integers x, lo and hi. Print true if lo <= x <= hi (inclusive), otherwise false.

Input: three integers separated by whitespace, in the order x lo hi (lo <= hi).

Output: one line — true or false.

Input (stdin)

Output

Run your code to see output here...