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)