fork download
  1. def f():
  2. global x
  3. x += 1
  4.  
  5. x, y = 1, 1
  6. f()
  7. print(x, y)
Success #stdin #stdout 0.02s 9120KB
stdin
Standard input is empty
stdout
2 1