What is the output of the function call is_teenager(13) given the following function definition? def is_teenager(age): if age >= 13 and age <= 19: return True return False status = is_teenager(13) print(status)