//Normal #define _GLIBCXX_DEBUG #define ll long long #include using namespace std; using Graph = vector>; void print(auto a){ cout << a; } void prints(auto a){ cout << a << " "; } void prints(){ cout << " "; } void printl(auto a){ cout << a << endl; } void printl(){ cout << endl; } void fix(int n){ cout << fixed << setprecision(n); } int main(){ string S; cin >> S; int s = (int)S.size(); int ans = 0; for(int i = 1; i < s; i++){ string A = S.substr(0, i); string B = S.substr(i, s); if(B[0] != '0') ans++; } printl(ans); return 0; }