fork download
  1. def f(a, b):
  2. return a + b
  3.  
  4. def x():
  5. print("x")
  6. return 1
  7.  
  8. def y():
  9. print("y")
  10. return 2
  11.  
  12. f(x(), y())
Success #stdin #stdout 0.01s 7052KB
stdin
Standard input is empty
stdout
x
y