#CSCI 151 Sept 11 - Graded Lab Practice Solution #Write a program that reads the number of days the person stays in the #hotel, the price of the hotel per day, and the tax (integer). The program #finds and prints the total price of the hotel stay. #Input price=float(input("enter price per day ")) days=int(input("enter number of days ")) tax=int(input("enter tax as integer percent ")) #Calculations pre_tax=price*days tax_value=pre_tax*tax/100 final=pre_tax+tax_value #Output print("final price is", format(final, '.2f'))