// #define _GLIBCXX_DEBUG #include using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define all(v) v.begin(), v.end() #define Graph vector> typedef long long ll; typedef pair P; const int INF = 1000000007; int main(){ string S; cin >> S; int ans = 0; rep(i, S.size()){ ans += S[i] - '0'; } cout << ans << endl; }