Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 528 Bytes

File metadata and controls

15 lines (10 loc) · 528 Bytes

Problem: Numbers from 100 to 200

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.

Sample Input and Output

Input Output
95 Less than 100
120 Between 100 and 200
210 Greater than 200

Testing in the Judge System

Test your solution here: https://judge.softuni.org/Contests/Practice/Index/506#9.