fork download
  1. from math import *
  2. def f(a,b=1):
  3. return a+b, a-b
  4. c=f(4,5)[1]
  5. print c# your code goes here
Success #stdin #stdout 0s 23352KB
stdin
Standard input is empty
stdout
Standard output is empty