fork download
  1. def function(a, b):
  2. return a*2, b*2
  3. print(function(3, 2))
Success #stdin #stdout 0.01s 7212KB
stdin
Standard input is empty
stdout
(6, 4)