Programming Drill #4

Due: Tuesday, May 27
Goal:  Use an if-else statement with && and ||

Write a program (using any IDE you like) 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