Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #(x or not y) and (y == z) and not w
- 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 ((x or not y) and (y == z) and not w):
- print(x, y, z, w)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement