7 lines
109 B
Text
7 lines
109 B
Text
// only using add, no need to flatten
|
|
def main(a,b):
|
|
c = add(a,b)
|
|
return c
|
|
|
|
def add(a,b):
|
|
return a + b
|