#include using namespace std; int main(){ int N; cin >> N; long SUM = 0, tmp; for(int i; i> tmp; SUM += tmp; } cout << SUM; }