If I have two sets of data
set<string> A;
set<string> B;
use set_intersection I am able to obtain the data in the intersection part for the two sets.
How do I print out the data in the non-intersection part for the set A and set B, respectively?