include <iostream> using namespace std; int main() { int n, sum; while (cin >> n) { sum+=n; } return 0; }