Write a program to print the count of 1s in the binary representation of an integer N. Binary representation is the base-2 representation and only involves 0 and 1 code example
Example: find no of 1's in a binary number
len(''.join(str(bin(122011)).split('0')))-1