#include using namespace std; int main() { int N; cin >> N; int A[N]; int ans = 0; for(int i=0; i> A[i]; ans += A[i]; } cout << ans << endl; }