7 lines
71 B
Python
7 lines
71 B
Python
|
def add(a, b):
|
||
|
return a + b
|
||
|
|
||
|
|
||
|
def subtract(a, b):
|
||
|
return a - b
|