MeehoweCK

Untitled

Mar 23rd, 2020
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     bool pf = (!(5 > 3) || 2571 % 3 == 0) && (11 > 3 * 4 || 20 % 3 == 0 || 6*7 != 5*8);
  8.     bool pf2 = !((5 % 2 == 1 || 77 < 80 || 121 % 11 == 0) && !(pf));
  9.  
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment