#include #include using namespace std; int main() { string str; cin>>str; int res=0; for(auto& c : str){ if(c>='0'&&c<='9') res+=c-'0'; } cout<