Advertisement
NIKOLAY_TETUS

Untitled

Jun 17th, 2021
969
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. #include <algorithm>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     for (int x = 0; x < 2; x++)
  10.         for (int y = 0; y < 2; y++)
  11.             for (int z = 0; z < 2; z++)
  12.                 for (int w = 0; w < 2; w++)
  13.                 {
  14.                     if ((!bool(y) || bool(x)) || (!bool(z) && bool(w)) = (w = x))
  15.                 }
  16.  
  17.     return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement