#include<bits/stdc++.h> using namespace std; int n; int main() { scanf("%d",&n); cout<<__builtin_popcountll(n)<<" ";//lowbit函数 return 0; }