Advertisement
MKbear

Python_7

Jun 10th, 2022
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. def main(test):
  2.     test = test | 2**33
  3.     test = bin(test)
  4.     test = test[4:]
  5.     a = test[-13:]
  6.     b = test[-18:-13]
  7.     c = test[-32:-18]
  8.     test = c+a+b
  9.     test = int(test, 2)
  10.     return test
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement