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