n = int(input()) values = list(map(int, input().split(' '))) def dfs(i): if n <= i: return 0 return max(dfs(i+1), dfs(i+2) + values[i]) print(dfs(0))