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