#include using namespace std; int main() { // 1. 入力情報取得. string S; cin >> S; // 2. ゴルフのスコアは? int ans = 0; for(int i = 0; i < S.size(); i++){ ans += (S[i] - '0'); if(S[i] == '0') ans += 10; } // 3. 出力. cout << ans << endl; return 0; }