This program illustrates the use of the STL unique() algorithm (extended version) to remove adjacent duplicate copies of integer values divisible by 3 from a vector of integers. Press Enter to continue ... Here are the values in the first vector: 1 2 2 3 3 6 5 2 6 9 12 2 2 2 9 10 11 12 Press Enter to continue ... Now we remove all adjacent duplicate copies of the values 2 and 3 and redisplay the values to confirm: 1 2 2 3 5 2 6 2 2 2 9 10 11 12 Press Enter to continue ... Here are the values in the second vector: 1 1 2 3 3 3 4 5 5 6 6 7 8 9 9 9 9 10 Press Enter to continue ... Now we remove all adjacent duplicate copies of any of the values and redisplay the values to confirm: 1 1 2 3 4 5 5 6 7 8 9 10 Press Enter to continue ...