print('Union of these two sets is:',b.union(c)) print('Disjoint of the two sets:',b.isdisjoint(c)) print('Intersection of these two sets is:',b.intersection(c)) print ...