#Collecting base input data
item = input("Itemn name: ")
price = float(input("Item price: $"))
saved = float(input("Amount saved: $"))
week = float(input("Earnings per week: $"))
# Doing the mathy stuff
priceaftersaved = price - saved
priceremaining = priceaftersaved/week
#prints results, dont forget to convert back to str to print correctly
print("You have saved " + str(saved) + " of the total cost")
print("You save " + str(week) + " each week")
print("It will take " + str(round(priceremaining, 2)) + " weeks to purchase a " + item)