This program illustrates the use of the STL transform algorithm (extended version) to multiply the values in a range of integers from a vector with corresponding values in a range of integers from a deque and write the products to a range within a list of intgers. Press Enter to continue ... Here are the values in the vector: 1 3 5 7 9 11 13 15 17 19 Press Enter to continue ... Here are the values in the deque: 2 4 6 8 10 12 14 16 18 20 Press Enter to continue ... Here are the values in the list: -1 -2 -3 -4 -5 -6 -7 -8 -9 -10 Press Enter to continue ... Now we multiply five values from the vector, starting with the fourth value, with five values from the deque, starting with the second value, and put the results in the list, starting at the third position. Press Enter to continue ... The iterator returned by the algorithm is pointing at the value -8 in the list, and here are all of the values in the list now: -1 -2 28 54 88 130 180 -8 -9 -10 Press Enter to continue ...