N = int(input()) A = sorted(list(map(int, input().split()))) ans = 0 for i in range(N): ans += abs(i + 1 - A[i]) print(ans)