N = gets.to_i A = gets.split.map(&:to_i) ans = 0 A.sort.each.with_index(1) do |a, i| ans += (a - i).abs end puts ans