# Arup Guha
# 6/12/2018
# Calculates prices of items without or with tax.

TAX_RATE = 0.065

# Get information about item price and tax status.
price = float(input("What is the price of your item?\n"))
isTaxed = input("Is your item taxed(yes/no)?\n")

# Updated for two different yes answers.
if isTaxed == "yes" or isTaxed == "Yes":
    price = price + price*TAX_RATE

# Ta da!
print("Your final total is", price)
