This program illustrates the comparison of sets using the relational operators. Press Enter to continue ... We begin by creating three sets. Press Enter to continue ... Here are the values in the first set: A B C D Press Enter to continue ... Here are the values in the second set: A B C D E Press Enter to continue ... The contents of the third set are the same as the second. Press Enter to continue ... Now we perform and show the results of some set comparisons. Press Enter to continue ... s1 < s2 = true s1 <= s2 = true s1 > s2 = false s1 >= s2 = false s2 == s3 = true s2 != s3 = false Press Enter to continue ...