scripts/ege/1/2.py
2023-05-05 00:45:01 +03:00

8 lines
227 B
Python
Vendored

for x in range(2):
for y in range(2):
for z in range(2):
for w in range(2):
r = not (y <= w) or (x <= z) or not (x)
if not r:
print(x, w, y, z)