Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- cnt = 0
- for a in range(-100, 100):
- f = True
- for x in range(100):
- for y in range(100):
- if not (((x < 6) <= (x**2 < a)) and ((y**2 <= a) <= (y <= 6))):
- f = False
- if f:
- cnt += 1
- print(cnt)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement