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