#include using namespace std; int main(void) { int x, TOTAL=0; while (cin >> x) TOTAL += x; cout << TOTAL << endl; return 0; }