Symmetric Difference

  • + 0 comments
    a = set(map(int, input().split()))
    N = input()
    b = set(map(int, input().split()))
    
    for i in sorted(a^b):
        print(i)