Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- num = int(input())
- if -100 <= num < 0 or 0 < num <= 100:
- print('Yes')
- else:
- print('No')
- Тарикатско решение:)
- num = int(input())
- print('Yes' if -100 <= num < 0 or 0 < num <= 100 else 'No')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement