mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-22 11:56:33 +03:00
7 lines
157 B
Python
Vendored
7 lines
157 B
Python
Vendored
for x in range(2):
|
|
for y in range(2):
|
|
for z in range(2):
|
|
r = x <= y and z
|
|
if not r:
|
|
print(y, x, z)
|