# Arup Guha
# 6/1/2026
# Program to calculate cost with tax.

# Testing regular print.
print("This is just a regular print.")

# Get the cost of the item.
cost = float(input("How much does your item cost?\n"))

# Get sales tax percentage.
taxPerc = float(input("What percentage is the sales tax?\n"))

# Print the result.
print("Your total cost is", cost*(1+taxPerc/100) )
