Respuesta :

Answer: See below.

Explanation:

user_tickets = int(input("How many tickets do you want to buy? "))

if user_tickets < 5:

   num_tickets = 1

else:

   num_tickets = user_tickets

print("You have {} tickets".format(num_tickets))