scripts/ege/13022023/2.py

8 lines
239 B
Python
Raw Normal View History

2023-05-05 00:45:01 +03:00
for x in range(2):
for y in range(2):
for w in range(2):
for z in range(2):
r = (w == y) or ((not (x) <= z) and (not (z) <= y))
if not r:
print(y, z, w, x)