Develop a simple food receipt (Python coding)
a. Ask the user for inputs about two food items using the following prompts in turn. Do not forget to assign each user entry to a unique variable name:
Item1 name?
Item1 price?
Item1 quantity?
Item2 name?
Item2 price?
Item2 quantity
b. Convert the price and quantity variables to integers
c. Calculate the total cost for the order by calculating each item's total price by multiplying price and quantity for each item and then adding up the total prices for the two items
d. Display the results using the format:
RECEIPT
You ordered: [item1 name] and [item2 name]
Total cost: $ [total price for both items calculated in 3c above