using namespace std;
int main() { string a; getline (cin ,a); int A=0; for(int i=0;i<a.size();i++){ if(a[i]%2!=0) A++; } cout<<A;
return 0;
}