#101. 判断青少年数
判断青少年数
Check for "Teen" Numbers
Background
Congcong is learning about number properties. He found some numbers interesting and gave them a special name.
Problem Description
We'll say that a number is "teen" if it is in the range inclusive. Given integer values, return true if or more of them are teen.
Input Format
Input is given from standard input in the following format.
Three integers representing the given values.
Output Format
Output is printed to standard output in the following format.
Output
trueif at least one number is a "teen" number; otherwise, outputfalse.
Sample
13 20 10
true
20 19 10
true
20 10 13
true
Sample Explanation
Sample 1: is a "teen" number, so output true.
Sample 2: is a "teen" number, so output true.
Sample 3: is a "teen" number, so output true.
Constraints
Time limit: second, Memory limit: KiB for each test case.