#include #include #include int main(){ int i; int total=0; char s[10000]; gets(s); for(i=0;s[i];i++){ if(isdigit(s[i])) total += s[i]-'0'; } printf("%d\n",total); return 0; }