Given two sets a = {1, 2, 3, 4} and b = {3, 4, 5, 6}, compute and print:
Union: all elements from both sets
Intersection: elements in both sets
Difference: elements in a but not in b
Symmetric difference: elements in either set but not both
Use set operators or methods for each operation.