#include #include int main() { std::string s; std::cin >> s; int ans = 0; for (const char& c : s) { ans += (c - '0'); } std::cout << ans << "\n"; }