#Title: Movie Challenge #Author: Lara #Date: 8th of June 2026 #Version: 1 #Purpose: Calculate tickets and check if they are suitable for discount 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 more tickets you will recive a 25% discount off the total cost. ') print('...lets begin') ticket = int(input('How many tickets are you buying?' )) price = int(intput('What is the ticket price?' )) if ticker >= 8: new_price = ticket * price percent_25 = new_price * 0.25 discount_price = new_price - percent_25 print(f'You receive a discount of ${percent_25}') print(f'The total amount is ${new_price} * {discount_price}') else: new_price = tickets * price print('No discount applied') print(f'The total amount is {new_price}')