https://practice.geeksforgeeks.org/problems/count-total-set-bits-1587115620/1#
int Count(int n){ int count = 0; while(n){ n = n & (n - 1);