Write a function add that takes two numbers and returns their sum.
def add(a, b):
# Your code here
Examples:
add(3, 5)returnsadd(-1, 1)returnsadd(2.5, 2.5)returns
This reinforces working with multiple parameters and the return statement. The function should work with integers and floats.