#include using namespace std; int main() { string str; cin >> str; int sum =0; for(char el: str){ if(isdigit(el) == true){ sum +=el-48; } } cout<