Given an integer as an input, print True if its value falls within the interval (−15,12]∪(14,17)∪[19,+∞). Otherwise, print False.
Keep in mind,
numbers denoted with a parenthesis, either
(or)are exclusive;numbers denoted with a square bracket, either
[or]are inclusive.
Hint
Your program should return True, if the value is greater than -15 and less than or equal to 12, or greater than 14 and less than 17, or greater than or equal to 19.