summaryrefslogtreecommitdiff
path: root/progs/a302.py
blob: b8c8c7c9996ca365c5ead3a951ad59e93a9f3b36 (plain)
1
2
3
4
5
6
7
8
9
def count_Unset_Bits(n) :  
    cnt = 0;  
    for i in range(1,n + 1) : 
        temp = i;  
        while (temp) :  
            if (temp % 2 == 0) : 
                cnt += 1;  
            temp = temp // 2;  
    return cnt;