# ==========================================
# EXERCISE: MOVIE TICKET RECEIPT GENERATOR
# ==========================================
print("--- Cinema Ticket Kiosk ---")
# 1. Gather user inputs (all inputs start as strings)
movie_title = input("Enter movie title: ")
ticket_price = float(input("Enter price per ticket ($): "))
ticket_count = int(input("Enter number of tickets: "))
# 2. Calculate the total cost using arithmetic
total_cost = ticket_price * ticket_count
# 3. Print a clean, itemized receipt
print("-" * 25)
print(f"Movie: {movie_title}")
print(f"Quantity: {ticket_count} tickets")
print(f"Total Amount Due: ${total_cost}")
print("Enjoy the show!")
print("-" * 25)