int main(){ string s; getline(cin,s); int ans=0; for (auto &e : s) { if(isdigit(e)){ ans++; } }
cout<<ans<<endl; return 0; }