This program illustrates the use of the STL mismatch() algorithm (extended version) to find mismatched values in two ranges of integers from two vectors of integers, when the sum of digits is used to determine if two integer values match. Press Enter to continue ... Here are the contents of v1: 21 13 5 Press Enter to continue ... Here are the contents of v2: 21 22 111 31 24 30 Press Enter to continue ... Now we compare the sequence in v1 with the sequence starting at the third value in v2. Press Enter to continue ... The first pair of mismatched values are 5 from the first range, and 24 from the second range. Press Enter to continue ... Here are the contents of v3: 21 13 5 15 61 26 18 91 Press Enter to continue ... Finally, we compare the sequence in v1 with the sequence in v3. Press Enter to continue ... The two sequences match fully. The second iterator of the pair returned points at 15 in the second range (in v2). Press Enter to continue ...