**Given a number in decimal, output count of set (1) bits in it's binary expansion.** **Example input (if any)** ``` 255, 11, 100, 99, 0, 1 ``` **Example output** ``` 8 3 3 4 0 1 ```