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