This program illustrates the use of the STL merge() algorithm (default version) to merge two sorted ranges of integer values from two different vectors of integers into a single sorted range of values in another vector of integers. Press Enter to continue ... Here are the contents of v1: 1 2 3 5 6 9 Press Enter to continue ... Here are the contents of v2: 2 4 6 8 9 10 15 Press Enter to continue ... Here are the contents of v3: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Press Enter to continue ... Now merge the contents of v1 and v2 into v3. Press Enter to continue ... Here are the revised contents of v3: 1 2 2 3 4 5 6 6 8 9 9 10 15 0 0 Press Enter to continue ...