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