fork(1) download
  1. # your code goes here
  2.  
  3. a = 130
  4. b = 999
  5.  
  6. print(a, b)
  7.  
  8. a += b
  9. b = a - b
  10. a -= b
  11.  
  12. print(a, b)
Success #stdin #stdout 0.01s 28384KB
stdin
Standard input is empty
stdout
130 999
999 130