A simple Python library that provides basic math operations.
add(a, b)
: Returns the sum of a and b.subtract(a, b)
: Returns the difference of a and b.multiply(a, b)
: Returns the product of a and b.divide(a, b)
: Returns the quotient of a and b. Raises an error if b is zero.