What is the output of this program?

def status(lives, score, damage):

if lives < 1:

print("The dragon is dead.")

print("Your score is", score)

status(3, 400, 0)

The output of this program will be:

Nothing will be outputted because the function does not have a return statement and the condition within the function (lives < 1) is not true.