fork download
  1. def chamar_ab():
  2. a = 1
  3. b = 2
  4. return a, b
  5.  
  6. def soma(x, y):
  7. return x + y
  8.  
  9. print(soma(*chamar_ab()))
  10.  
  11. #https://pt.stackoverflow.com/q/392570/101
Success #stdin #stdout 0.02s 27704KB
stdin
Standard input is empty
stdout
3