7 أسطر
71 B
Python
7 أسطر
71 B
Python
def add(a, b):
|
|
return a + b
|
|
|
|
|
|
def subtract(a, b):
|
|
return a - b
|