This program illustrates the use of the STL equal() algorithm (extended version) to test whether the integers in a range of integers in one vector match the integers in another range in a different vector, in the sense of values in corresponding positions having the same digit sum. 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 23 30 31 32 Press Enter to continue ... First we compare the sequence in v1 with the sequence starting at the beginning of v2, and ask whether they match. Yes, they match. Press Enter to continue ... Then we compare the sequence starting at the beginning of v1 with the sequence starting at the second value of v2 and ask whether they match. No, they don't match. Press Enter to continue ... Finally, we compare the sequence starting at the beginning of v1 with the sequence starting at the second value of v2 and ask whether they match. Yes, they match. Press Enter to continue ...