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