Problem D
Tall Enough

The new amusement park you’ve opened has a small problem: people are riding your roller coasters without meeting the safety requirements! Instead of hiring more employees to enforce the safety requirements, you decide to augment your coaster control system with a new safety check.
The system you’re creating will accept a list of heights in
inches and will output “True” if all of the heights are greater
than or equal to
Input
The first line is
The next
Output
If any of the heights are less than
Sample Input 1 | Sample Output 1 |
---|---|
3 50 60 100 |
True |
Sample Input 2 | Sample Output 2 |
---|---|
4 75 40 80 600 |
False |