# Title: Cost for the movie tickets # Author: Hailey Lau # 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 tickets cost ') print('If you purchase 8 or mor tickets you will recieve a 25% discount off the total cost.') print('..lets begin') number_ticket = int(input('How many tickets are you buying? ')) price_ticket = int(input('What is the ticket price? ')) if number_ticket > 8: total = number_ticket * price_ticket discount = total * 0.25 total_p = total - discount print(f'You recieve a discount of {discount}') print(f'The total amount is (${total} - ${discount}) = ${total_p}') else: print('No discount applied') total = number_ticket * price_ticket print('No discount applied') print(f'The total amount is {number_ticket} x {price_ticket } = ${total}') print('The program has ended')