n=int(input()) vs=list(map(int,input().split())) dp=[0]*(n+2) for i,v in enumerate(vs): dp[i]=max(dp[i-1],dp[i-2]+v) print(dp[-3])