# write program to get item price from a user (via a keyboard) # apply 20% discount, apply sale tax 5%, # and then display the final sale price # 1. get the item price and store in a memory item_price = float(input("Enter the item price : ")) # 2. apply 20% discounted_price = item_price * 0.8 # 3. apply sale tax 5% final_price = discounted_price * 1.05 # 4. display final sale price print(final_price)