#include using namespace std; int main(){ int ans = 0;char s; while(cin >> s) ans += s-'0'; cout << ans << endl; return 0; }