1#include <bits/stdc++.h>2 3using namespace std;4 5int main() {6 string s;7 cin >> s;8 cout << count(s.begin(), s.end(), '0');9 return 0;10}