What is the output?

def divide(numA, numB):
return numA / numB
answer = divide(21,3)
print (answer)

There are no errors but there will be no output.

21, 3

7.0

An error occurs.