#include #include int main() { int x; int i=0; scanf("%d",&x); while(x!=0) { i++; x=x & (x-1); } printf("%d",i); return 0; }