fork download
  1. # your code goes here
  2.  
  3.  
  4. def f(c):
  5. c+=1
  6.  
  7. c = 1
  8.  
  9. f(c)
  10. print(c)
Success #stdin #stdout 0.01s 7076KB
stdin
Standard input is empty
stdout
1