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