#include using namespace std; int main() { int n,cn,nb1=0; scanf("%d",&n); while(n>0) { if(n%2==1) nb1++; n=n/2; } printf("%d",nb1); return 0; }