#include using namespace std; int main() { int n,k; cin>>n; while(n>0) { if(n%2==1) k++; n/=2; } return 0; }