Advertisement
darya_leushkina

Untitled

Apr 26th, 2021
723
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. B = True
  2. count = 0
  3. for A in range(1, 200):
  4.     B = True
  5.     for x in range(200):
  6.         for y in range(200):
  7.             if not ((x >= A or x ** 2 < 100) and (y ** 2 > 64 or y <= A)):
  8.                 B = False
  9.     if B:
  10.         count += 1
  11. print(count)
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement