2025-02-17 16:52:06 +01:00

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