# define item name item = "Pizza Slices" # define a unit price unit_price = 1.99 # define how many items we are buying quantity = 10 # compute total cost of items and store # in a variable called "total" total = unit_price * quantity # output result to the user print (quantity, item, "will cost you", total)