#include using namespace std; int main() { int n; cin >> n; int Bits = 0; for(int i = 0; i < 6; i++){ if(1 << i & n) Bits++; } cout << Bits; }