int Func(int x)
{
int count=0;
while(x!=0)
{
count++;
x=x&(x-1);
}
return count;
}
int _tmain(int argc, _TCHAR* argv[])
{
int x=9999;
cout<<Func(9999)<<endl;
system("pause");
return 0;
}