Answer:
The other answer had some mistakes (i.e. capitalization when it should be lower case, etc.) that made it incorrect. Here is the updated answer:
Written in Python:
def print_popcorn_time(bag_ounces):
 if bag_ounces<3:
 print("Too small")
 elif bag_ounces>10:
 print("Too large")
 else:
 bag_ounces = bag_ounces*6
 print("%s seconds" % bag_ounces)
 
user_ounces = int(input())
print_popcorn_time(user_ounces)
Step-by-step explanation: