#Title : movie #Author: Flynn #Date: 4.6.2026 #Version: 1 #Purpose: ask how many tickets are purchased andd the cost of the total tickets print("Welcome to the movie program") print("To use program you will enter the number of tickets you wamt to purchase and how much the tickets cost") print("If you purchase 8 or more tickets you resive a 25% discount off the total cost... Let's begin") tickets = int(input("How many tickets are you buying? ")) price = int(input("What is the ticket price")) if tickets >= 8: discount = 0.25 * price * 10 total = tickets * price discount_total = total - discount print(f"You recevie a disccount of {discount}") print(f"The origonal amount is {tickets} x {price} = {total}") print(f"The new price is {discount_total}") elif tickets <= 8: print("No discount applied") print(f"The total amount is {tickets} x {price} = {total}") print("The program has ended")