n = int(input()) c = list(map(int, input().split())) c.sort() ans = abs(sum(c[n // 2:])) - abs(sum(c[:n // 2])) print(abs(ans))