Write a program that inputs an integer and checks if it is below 100, between 100 and 200 or over 200. Print the appropriate message as in the examples below.
Input | Output |
---|---|
95 | Less than 100 |
120 | Between 100 and 200 |
210 | Greater than 200 |
Test your solution here: https://judge.softuni.org/Contests/Practice/Index/506#9.