Advertisement
KiK0S

Untitled

Apr 16th, 2021
648
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. def impl(a, b):
  2.     return not a or b
  3.  
  4. for A in range(80, 201):
  5.     ok = True
  6.     for x in range(1, 2000):
  7.         if not impl(x & 56 != 0 or x & 43 != 0, x & A):
  8.             ok = False
  9.     if ok:
  10.         print(A)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement