This program illustrates the use of the STL equal() algorithm (default version) to test whether the integers in a range of integers in one vector are the same as the integers in another range in a different vector. Press Enter to continue ... Here are the contents of v1: 4 3 7 5 6 Press Enter to continue ... Here are the contents of v2: 1 2 4 3 7 5 6 8 9 10 Press Enter to continue ... First we compare the sequence in v1 and the sequence starting at the beginning of v2, and ask whether they match. No, they don't match. Press Enter to continue ... Then we compare the sequence in v1 with the sequence starting at the third value of v2, and ask whether they match. Yes, they match. Press Enter to continue ...