fork(1) download
  1. def a(b,c):
  2. return b+c,b*c
  3.  
  4. print(a(2,5))
Success #stdin #stdout 0.02s 27712KB
stdin
Standard input is empty
stdout
(7, 10)