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