fork download
  1. # your code goes here
  2. def adder(x,y):
  3. sum = x + y
  4. return sum
  5.  
  6. sum =adder(10,15)
  7. print(sum)
Success #stdin #stdout 0.01s 28384KB
stdin
Standard input is empty
stdout
25