This program illustrates the use of the STL min() algorithm (default version) to find the minimum of two integer literal values, the minimum of two integer values stored in simple integer variables, and (in two different ways) the minimum of two integer values stored in a vector of integers. Press Enter to continue ... First, we find the mminimum of two integer literal values. min(12, -3) = -3 Press Enter to continue ... Next, we find the minimum of two integer values stored in simple integer variables. first = 7 second = 10 min(first, second) = 7 Press Enter to continue ... Here are the integer values in the vector: 2 6 10 8 4 Press Enter to continue ... Now we find the minimum of the first and last values stored in the vector of integers using one approach. min(v.at(0), v.at(4)) = 2 Press Enter to continue ... Finally, we find the minimum of the first and last values stored in the vector of integers using a second approach. min(*v.begin(), *(v.end()-1)) = 2 Press Enter to continue ...