#The person is purchasing apples and apple pies in the store. Write the #program that reads the number of pounds and price per pound for apples, #the number of pies and price of one pie, and the tax (integer). The #program finds and prints the total purchase price. For example, if the #person purchased 3 pounds of apples, 1.99 per pound, and 2 apple pies, #7.99 each, and the tax is 6%, the total purchase price is: 23.27 dollars. #input: 5 inputs #Part I Input num_pounds=float(input("enter number of pounds ")) pound_price=float(input("price per pound ")) num_pies=int(input("number of pies ")) pie_price=float(input("enter pie price ")) tax=int(input("tax as an integer ")) #Part II Calculation pre_tax=num_pounds*pound_price + num_pies*pie_price tax_value=pre_tax*tax/100 total=pre_tax+tax_value #Part III Output print("total=", total)