This program illustrates the use of the STL search() algorithm (extended version) to find the first occurrence of one range of matching integer values in a vector within another range of integer values, also in a vector, and where corresponding values match if and only if they have the same digit sum. Press Enter to continue ... Here are the contents of v1: 17 21 13 5 6 7 8 12 31 14 9 10 11 Press Enter to continue ... Here are the contents of v2: 12 31 14 Press Enter to continue ... The first instance of v2 in v1 begins at location 2. Press Enter to continue ... The next instance of v2 in v1 begins at location 8. Press Enter to continue ... No further instance of v2 was found in v1. Press Enter to continue ...