Write a program to calculate the total price for car wash services. A base car wash is $10. A dictionary with each additional service and the corresponding cost has been provided. Two additional services can be selected. A signifies an additional service was not selected. Output all selected services along with the corresponding costs and then the total price for all car wash services. Ex: If the input is: Tire shine Wax the output is: ZyCar Wash Base car wash -- $10 Tire shine -- $2 Wax -- $3 Total price: $15 Ex: If the input is: Rain repellent the output is: ZyCar Wash Base car wash -- $10 Rain repellent -- $2 Total price: $12 LAB ACTIVITY 8.20.1: LAB: Car Wash 0/10 main.py Load default template... 1 services = { 'Air freshener' :1, 'Rain repellent': 2, 'Tire shine' : 2, 'Wax' : 3, "Vacuum' : 5} 2 base_wash = 10 3 total = 0 4 5 service_choice1 = input 6 service_choice2 = input 7 8'' Type your code here! Develop mode Submit mode Run your program as often as you'd like, before submitting for grading. Below, type any needed input values in the first box, then click Run program and observe the program's output in the second box. Enter program input (optional) If your code requires input values, provide them here. Run program Input (from above) main.py (Your program) Output (shown below) Program output displayed here