6 lines
65 B
Python
6 lines
65 B
Python
|
|
def add(a, b):
|
||
|
|
return a + b
|
||
|
|
|
||
|
|
def sub(a, b):
|
||
|
|
return a - b
|