This program illustrates the use of the STL includes() algorithm (default version) to test whether the values in a second (sorted) range of integer values in a vector of integers are all present in a first (sorted) range of integer values, also in a vector of integers. Press Enter to continue ... Here are the contents of v1: 1 2 4 8 16 32 64 128 256 512 Press Enter to continue ... Here are the contents of v2: 2 16 128 512 Press Enter to continue ... v1 includes v2. Press Enter to continue ... Here are the contents of v3: 2 16 128 1024 Press Enter to continue ... v1 does not include v3. Press Enter to continue ...