#90. 数字范围判断
数字范围判断
Range Check
Background
Congcong is learning about conditional statements in programming. He encountered an interesting problem that requires checking if two numbers satisfy a specific condition.
Problem Description
Given two integer values, return true if either of them is in the inclusive range . Otherwise, return false.
Input Format
Input is given from standard input in the following format.
Output Format
Output is printed to standard output in the following format.
trueorfalse
Sample
12 99
true
21 12
true
8 99
false
Sample Explanation
For the first sample, the input is and . Since is within the inclusive range , the result is true.
Constraints
Time limit: second per test case. Memory limit: KiB per test case.