discount = 15 costPerDVD = float(input("Enter the cost of each DVD: ")) numberBought = int(input("Enter the number of DVDs bought: ")) totalCost = (costPerDVD * numberBought) - discount print("The total cost after a discount of", discount, "is", totalCost)