fork(2) download
  1. n = 55
  2. d = 2
  3. b = 8
  4. n1 = n>>d
  5. n2 = n1<<d
  6. n3 = n2 ^ n
  7. n4 = n3<<(b-d)
  8. f = n4 ^ n1
  9. print(f)
  10.  
Success #stdin #stdout 0.1s 10088KB
stdin
Standard input is empty
stdout
205