Symmetric Difference

  • + 0 comments

    P = input() W = set(map(int, input().split())) U = input() S = set(map(int, input().split()))

    for i in sorted(W^S): print(i)