Quiz Question 1 of 4
Given the following code:
age = int(input("What is your age? "))
if age < 13:
print("Sorry you are not old enough to see this PG-13 movie")
else:
print("Welcome to the movie")
What would be printed out to the console if the user entered 13?
Choose the correct answer below: