To indicate we're adding a user to the database, code a print statement with f"Adding {user} to database" between the parentheses.
f"Adding {user} to database"
Make sure to pick print followed by ( and then user, ).
print
(
user
)