print("what's the price of your item?") price = float(input()) price += price*0.07 print("the total price with 7% sales is $" + str(price))
what's the price of your item? the total price with 7% sales is $5.35