#include using namespace std; int main() { int n, p=32, ct=0, i, j; cin>>n; while(n>0) { if(n>=p) { n=n-p; ct++; } if(p>n) p=p/2; } cout<