fork download
  1. def add(a, b):
  2. return a+b
  3.  
  4. s = add(add(10, 20), 30)
  5.  
  6. print(s)
  7.  
Success #stdin #stdout 0.04s 9644KB
stdin
8
stdout
60