//Statement def multiply(a, b): a * b //Line 3 is wrong, so the correct line is def multiply(a ,b) return (a * b)
def multiply (a, b): a * b