mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-22 20:06:33 +03:00
8 lines
239 B
Python
8 lines
239 B
Python
|
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)
|