fork download
  1. a = 10
  2. b = 20
  3. a = b
  4. b = a
  5. print(a, b)
  6.  
Success #stdin #stdout 0.03s 9548KB
stdin
8
stdout
20 20