#define PROBLEM no289 // "Env.h"ヘッダが存在していたらインクルードする #if __has_include("../Env.h") #include "../Env.h" #endif #include #include #include #include #include #include #include #include using namespace std; using VI = vector; using VVI = vector; using USI = unordered_set; class no289 { public: void solve() { string S; int ans = 0; cin >> S; for (const auto c : S) { if ('0' <= c && c <= '9') { ans += c - '0'; } } cout << ans << endl; } }; #ifndef YUKICODER_ENV_H int main() { auto problem = new PROBLEM(); problem->solve(); return 0; } #endif //YUKICODER_ENV_H