#Title: movie.py #Author: Kayden #Date: 8.6.2026 #Version: 1 #Purpose: to ask how many tickets are being purchased and the cost per ticket 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 receive a 25% discount off the total cost... lets begin") tickets = int(input("How many tickets are you buying? ")) price = int(input("What is the ticket price? ")) if tickets >= 8: discount = 25%ss price total = tickets * price discount_total = total - discount print(f"You recevie a discount of {discount}") print(f"The original 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")