n = int(input())
li = [0] * n
seat = list(map(int, input().split()))
cnt = 0
for i in range(n):
if seat[i] in li:
cnt += 1
else:
li[i] = seat[i]
print(cnt)
for문을 쓰지 않고도 풀 수 있다. 집합(set)을 사용해서 중복을 제거하면 된다.
n = int(input())
seat = list(map(int, input().split()))
print(n - len(set(seat)))