8 lines
197 B
Python
8 lines
197 B
Python
def sum(a, b):
|
|
"""Returns the sum of the two given numbers"""
|
|
return a + b
|
|
|
|
def subtraction(a, b):
|
|
"""Returns the difference between first and second given numbers"""
|
|
return a - b
|