#include<bits/stdc++.h> using namespace std; int main(){ int sum = 0; int n; cin>>n; while(n){ sum+=n; cin>>n; } cout<<sum<<endl; return 0; }