#!/usr/bin/python3
###################################################################################
# Prompt the user to enter some input
# This script will not work directly on the web - You cannot prompt from the web 
###################################################################################
print("Content-Type: text/html \n")  #http header with newline char (required for web)

fruit    = input("Enter your favorite fruit.....: ")
quantity = input("How many pounds would you like? ")        #quantity is a string
price    = input("Enter the price per pound.....: ")

print(F"You have entered {quantity} lbs of {fruit} at ${price}")

quantity = float(quantity)                                  #convert quantity to a number
price    = float(price)                                     #convert price to a number

bill = quantity * price

print(F"Your total bill is ${bill}")