fork download
  1. def add(x,y,f):
  2. return f(x)+f(y)
  3. print(add(-5,6,abs))
Success #stdin #stdout 0.1s 14156KB
stdin
Standard input is empty
stdout
11