These operations should be implemented ``` python >>> a = {1, 2, 3} >>> b = {2, 3, 4, 5} >>> a | b {1, 2, 3, 4, 5} >>> a & b {2, 3} >>> a - b {1} >>> a ^ b {1, 4, 5} >>> ```