Advertisement
nq1s788

2

Apr 2nd, 2025
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. #(x or not y) and (y == z) and not w
  2. print('x y z w')
  3. for x in range(2):
  4.     for y in range(2):
  5.         for z in range(2):
  6.             for w in range(2):
  7.                 if not ((x or not y) and (y == z) and not w):
  8.                     print(x, y, z, w)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement