fork download
  1. a=4
  2. b=7
  3. a = a + b
  4.  
  5. b = a - b
  6. print(a,b)
Success #stdin #stdout 0.02s 9200KB
stdin
Standard input is empty
stdout
11 4