An else-if in Python is written as follows:

if first_condition:
    first_body
elif second_condition:
    second_body

Note that Python only allows elif and considers else if to be a syntax error.

Fill in the placeholders so that the actual outputs match the expected outputs.