#Title: Movie Program #Author: Max Clarkin #Date: 09/06/2026 #Version: 01 #Purpose: To calculate total ticket prices and tell if there is a discount needed to be applied discount = 0.25 ticket_price = 10 people = int(input('Hello! How many people are viewing this movie? ')) print(f'The total cost is ${ticket_price * people} ') if people >= 8: print(f'Since there is 8 or more people, you get a 25% discount! Your total comes to ${(ticket_price * people) - 0.25 * (ticket_price * people)}. ') else: print('NO DISCOUNT APPLIED! ') print('Ok, here are your tickets. ')