#include using namespace std; int main(){ string s;cin>>s; int a = 0; for(int i = 1; s.size() > i; i++){ if(s[i]!='0')a++; } cout << a << endl; }