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