def multiplier (a, b): a * b

def multiply(a, b):
    return(a * b)
Zany Zebra