#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. #Part 1 Input price=float(input("enter price ")) tax=int(input("enter tax as an integer percent ")) #Part II Calculations final=price + price*tax/100 #final=price*(1+tax/100) #or you can break it into several statements #dec_tax=tax/100 #tax_value=num*dec_tax #final=price+tax_value #Part III calculations print("final price is", final)