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