# Title: Movie # Author: Stefanie Remondavia # Date: 12.06.25 # Version: version 1 # Purpose: print('Welcome to the movie program ') print('To use this program you will enter the number of tickets you want to purchase and how much the ticket cost ') print('If you purchase 8 or more tickets you recieve 25% discount off the total cost. ') print('..lets begin ') # asking the person how many tickets they're buying number_tickets = int(input('How many tickets are you buying? ')) price_tickets = float(input('What is the ticket price? ')) total = number_tickets * price_tickets if number_tickets <8: print(f"No discount applied") print(f"The total amount is {number_tickets} x {price_tickets} = ${total:.2f}") else: print(f"No discount applied") print(f"No discount applied") # telling the person the program has ended print("The program has ended.")