This program illustrates the use of the STL search_n() algorithm (extended version) to find instances of a consecutive sequence of matching values in a vector of integers, where values match if and only if they have the same digit sum. Press Enter to continue ... Here are the contents of the vector: 17 27 63 54 45 71 28 81 90 18 10 9 11 Press Enter to continue ... The first instance of three consecutive integers with a digit sum of 9 starts at location 2. Press Enter to continue ... The next instance of three consecutive integers with a digit sum of 9 starts at location 3. Press Enter to continue ... The next instance of three consecutive integers with a digit sum of 9 starts at location 8. Press Enter to continue ... No further instance of three consecutive integers with a digit sum of 9 was found in the vector. Press Enter to continue ...