#Title: Movie #Author: Musa Wilson #Date: 8/06/2026 #Version: 1 #Purpose: Tell people about the movie program num_people = int(input("Enter the number of people in the group (1-20): ")) ticket_price = float(input("Enter the cost per ticket ($5-$20): ")) total_cost = num_people * ticket_price print(f"\nTotal cost before discount: ${total_cost:.2f}") if num_people >= 8: discount = total_cost * 0.25 final_price = total_cost - discount print(f"Discount applied (25%): ${discount:.2f}") print(f"Total price to pay: ${final_price:.2f}") else: print("No discount applied.") print(f"Total price to pay: ${total_cost:.2f}") print("The program has ended.")