以下のコードの実行結果はどうなりますか? ```python set_a = {1, 2, 3, 4} set_b = {3, 4, 5, 6} result = set_a & set_b print(result) ```