#include using namespace std; int main() { // 1. 入力情報取得. string S; cin >> S; // 2. 文字列中 '0' ~ '9' の 合計. int ans = 0; for(int i = 0; i < S.size(); i++){ int c = S[i] - '0'; if(c >= 0 && c <= 9) ans += c; } // 3. 出力 ~ 後処理. cout << ans << endl; return 0; }