N=int(input()) A=set(map(int,input().split())) ans=0 for a in A: if a-1 not in A: ans+=a print(ans)