6 lines
69 B
Text
6 lines
69 B
Text
def add(a,b):
|
|
return a+b
|
|
|
|
def main(a,b):
|
|
c = add(a,b)
|
|
return c
|