fork download
  1. n1 = 10
  2. n2 = 20
  3. def calculadora (n1, n2):
  4. return n1 + n2
  5. n1 = 10
  6. n2 = 20
  7. print(calculadora(1, 2))
  8.  
  9. #https://pt.stackoverflow.com/q/483477/101
Success #stdin #stdout 0.02s 9056KB
stdin
Standard input is empty
stdout
3