#Title: Movie Program #Author: Liam Baker Campbell #Date: 24/06/25 #Version: Version 1 #Purpose: To figure out how much movie tickets will cost. 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 morew tickets, ou recive a 25% discount off the total cost.') ticket = int(input('How many tickets are you buying? ')) price = int(input('What is the ticket price? ')) if ticket >=8: total = ticket*price discount = total*0.25 new_total = total-discount print(f'You recived a discount of {discount}.') print(f'The total amount is {total} - {discount} = {new_total}.') else: print('No discount applied.') total = ticket*price print(f'The total amount is {ticket} x ${price} = ${total}.') print('The program has ended.')