Write a program that inputs an integer. If the integer is greater than 100 or between 50 and 75 (inclusive) then output YES. Otherwise, output NO. Your program should use an if-else statement along with && (and) and || (or) relational operators.
Examples of numbers that would result in an output of YES : 101, 50, 75, 55, 70, 71, 250
Examples of numbers that would result in an output of NO: 49, 76, 100, 80, 10, -50, 0
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.