Advertisement
NIKOLAY_TETUS

2

Jun 22nd, 2021
1,013
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. for x in range(0, 2):
  2.     for y in range(0, 2):
  3.         for z in range(0, 2):
  4.             for w in range(0, 2):
  5.                 if not (x is not z) or ((x or w) is y) == False:
  6.                     print("x=", x, "; y=", y, "; z=", z, "; w=", w, sep='')
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement