mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-26 05:23:42 +03:00
8 lines
227 B
Python
8 lines
227 B
Python
for x in range(2):
|
|
for y in range(2):
|
|
for w in range(2):
|
|
for z in range(2):
|
|
r = not (w <= z) or (x <= y) or not (x)
|
|
if not r:
|
|
print(w, z, y, x)
|