Write a function maximum that takes two numbers and returns the larger one. Don't use Python's built-in max function.
def maximum(a, b):
# Your code here
Examples:
maximum(5, 3)returnsmaximum(-1, -5)returnsmaximum(7, 7)returns
Use an if statement to compare the values and return the appropriate one.