This program illustrates the use of the STL includes() algorithm (extended version) to test whether the values in a second range of (ordered) integer values in a vector of integers are all present in a first (ordered) range of integer values, also in a vector of integers. In this case the integers are ordered in the sense that a first integer precedes a second if and only if its digit sum is less than the digit sum of the second integer. Press Enter to continue ... Here are the contents of v1: 11 23 15 8 55 39 96 Press Enter to continue ... Here are the contents of v2: 11 15 39 Press Enter to continue ... v1 includes v2. Press Enter to continue ... Here are the contents of v3: 14 44 66 Press Enter to continue ... v1 includes v3. Press Enter to continue ... Here are the contents of v4: 14 44 65 Press Enter to continue ... v1 does not include v4. Press Enter to continue ...