fork download
  1. def yoba(a, b):
  2.  
  3. a, b = a + 1, b - 1
  4. return b and yoba(a, b) or a
  5.  
  6.  
  7. print(yoba(3, 4))
Success #stdin #stdout 0.02s 9984KB
stdin
Standard input is empty
stdout
7