import sys input=lambda:sys.stdin.readline().rstrip() N=int(input()) O=sum([int(i)%2 for i in input().split()]) print(abs(N-2*O))