finderabc

04. Number 100...200

Sep 23rd, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. #1. read in input
  2. #2. под 100, между 100 и 200 или над 200
  3. number = int(input())
  4. if number < 100:
  5.     print("Less than 100")
  6. elif 100 <= number <= 200:
  7.     print('Between 100 and 200')
  8. elif number > 200:
  9.     print('Greater than 200')
Add Comment
Please, Sign In to add comment