mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-29 06:43:43 +03:00
8 lines
242 B
Python
Vendored
8 lines
242 B
Python
Vendored
for x in range(2):
|
|
for y in range(2):
|
|
for w in range(2):
|
|
for z in range(2):
|
|
r = (int(x or y) <= int(x != w)) != (int(x and z) <= int(y == w))
|
|
if r:
|
|
print(w, x, y, z)
|