fork download
  1. def set(self, n, change=False):
  2. #5 строк кода
  3. if change:
  4. self.v += n
  5. else:
  6. self.v = n
  7.  
  8. def change(self, n):
  9. self.set(n,True)
  10.  
Success #stdin #stdout 0.03s 9984KB
stdin
Standard input is empty
stdout
Standard output is empty