Ответ:
zwyx
Объяснение:
print ('x y z w')
for x in range(2):
for y in range(2):
for z in range(2):
for w in range(2):
if ((not w) or (x or (not z)) and ((not x) or (not y) or z)) == 0:
print(x, y, z, w)
вывод x y z w
0 0 1 1
0 1 1 1
1 1 0 1
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
zwyx
Объяснение:
print ('x y z w')
for x in range(2):
for y in range(2):
for z in range(2):
for w in range(2):
if ((not w) or (x or (not z)) and ((not x) or (not y) or z)) == 0:
print(x, y, z, w)
вывод
x y z w
0 0 1 1
0 1 1 1
1 1 0 1