n=input();b=[] a=list(map(int,input().split())) for _ in a: if _ not in b: b.append(_) else: b.remove(_) print(len(b))