services = { 'Air freshener' : 1 , 'Rain repellent': 2, 'Tire shine' : 2, 'Wax' : 3, 'Vacuum' : 5 }
base_wash = 10
total = base_wash  # Start with base wash price

service_choice1 = input()
service_choice2 = input()

print("ZyCar Wash")
print(f"Base car wash -- ${base_wash}")

# Process first service choice
if service_choice1 != '-':
    cost1 = services[service_choice1]
    print(f"{service_choice1} -- ${cost1}")
    total += cost1

# Process second service choice
if service_choice2 != '-':
    cost2 = services[service_choice2]
    print(f"{service_choice2} -- ${cost2}")
    total += cost2

print("----")
print(f"Total price: ${total}")