Advertisement
veronikaaa86

06. Number in Range

Jan 22nd, 2022
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. num = int(input())
  2.  
  3. if num >= -100 and num <= 100 and num != 0:
  4. print("Yes")
  5. else:
  6. print("No")
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement