#Write a program that asks user to enter price of the item and sale #tax (as integer number) in the state user lives. The program calculates #and prints the final price of the item. #Discussion #Input: two inputs, stored in price (float) and tax (int) #Output: final_price, float #Calculations: final_price=price+price*tax/100 #Input Limitations: price must be positive and tax must be positive or zero #Input price=float(input("enter price ")) tax=int(input("enter tax ")) #Calculations final_price=price+price*tax/100 #Output print(final_price) #still acceptable #Better output statement print("the final price is", final_price) #Best output - including format statement print("the final price is",format(final_price, '.2f'), "dollars") #Test: price = 25.99 tax = 7 #the output supposer to be 25.99*(1+7/100)=27.81