N=int(input()) A=sorted(map(int,input().split())) ans=0 for x in A: if A.count(x)==1:ans+=1 print(ans)