Advertisement
ilian_test

Untitled

Oct 9th, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. x = int(input());
  2.  
  3. if (x < 100):
  4.     print("Less than 100")
  5. elif (x >= 100 and x <= 200):
  6.     print("Between 100 and 200")
  7. elif  (x > 200):
  8.     print("Greater than 200")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement