#Title:Movie Challenge #Author:Finn Kayser #Date:09/06/26 #Version:1 #Purpose:To help the customer know if the discount is going to apply price = 7 tickets = int(input('How many people in your group?(number of tickets) ')) print(f'The cost is {price*tickets} before discount may be is applied') if tickets >= 8: print(f'The discount has been applied your new total is {price*tickets*0.75}') else: print('No discount has been applied') print('The program has ended')