#include using namespace std; typedef pair pii; typedef long long int ll; int n, ans; int a[1001]; int dp[1001]; int chk[1001]; int f(int pos) { if (chk[pos]) return dp[pos]; if (pos >= n) return 0; chk[pos] = 1; return dp[pos] = max(f(pos+1), f(pos+2)+ a[pos]); } int main() { cin.tie(0); ios::sync_with_stdio(false); cin >> n; for (int i = 0; i < n; i++) cin >> a[i]; cout << f(0) << endl; return 0; }