fork download
  1. def function(a, b, c):
  2. return a + b + c
  3. print(function(1, 2, 3))
  4. print(function("cat", "dog", "bat"))
Success #stdin #stdout 0.02s 7224KB
stdin
Standard input is empty
stdout
6
catdogbat