mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-22 11:56:33 +03:00
12 lines
277 B
Python
Vendored
12 lines
277 B
Python
Vendored
for A in range(1000):
|
|
f = True
|
|
for x in range(1, 1000):
|
|
for y in range(1, 1000):
|
|
r = (x + y <= 32) or (y <= x + 4) or (y >= A)
|
|
if not r:
|
|
f = False
|
|
if not f:
|
|
break
|
|
if f:
|
|
print(A)
|