#include using namespace std; #define REP(i,n) for(int i=0; i<(n); i++) #define REP2(i,x,n) for(int i=x; i<(n); i++) #define ALL(n) begin(n),end(n) const long long INF = numeric_limits::max(); // yukicoder は使いやすい int main() { string S; cin >> S; vector v( 9 ); REP( i, (int)S.size() ) { v[ i ] = S[ i ] - '0'; } cout << accumulate( ALL( v ), 0, []( int &sum, int &x ){ return x != 0 ? sum += x : sum += 10; } ) << endl; return 0; }