#Week 4 Lab 6/7 #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. #days price tax #one night full price: price+price*tax/100 #full stay: days*(price+price*tax/100) days = int(input("enter days in the hotel ")) price = float(input("enter price per night ")) tax = int(input("tax ")) full_one_night = price+price*tax/100 total = days*full_one_night print("total stays is ", format(total, ".2f")) #TESTING #input1: days = 5, price = 10.99, tax = 6 #output:$58.25 #input2: days = 10, price = 100, tax = 7 #output: $1070