#include #define cbits(x) __builtin_popcount(x) using namespace std; int main() { long long a; cin >> a; cout << cbits(a) << endl; }