#include using namespace std; int main() { int n,k=0; cin>>n; while(n) { if((n%10)%2==1) k++; n=n/10; } cout<