#Title:Movie Challenge #Author:Reign Hammond #Date:10/06/26 #Version:1 #Purpose:To calculate the cost of movie tickets and apply a discount. 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 is applied') print('The program has ended')