Skip to content

Instantly share code, notes, and snippets.

@ryanthegiantlion
Created June 24, 2016 10:49
Show Gist options
  • Save ryanthegiantlion/12b0bd3b9e25b87f4b026ee730db0de0 to your computer and use it in GitHub Desktop.
Save ryanthegiantlion/12b0bd3b9e25b87f4b026ee730db0de0 to your computer and use it in GitHub Desktop.
import sys
T = int(sys.stdin.readline().strip())
xor_bits = (1 << 32) - 1
for i in xrange(T):
N = int(sys.stdin.readline().strip())
print N ^ xor_bits
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment