summaryrefslogtreecommitdiff
path: root/progs/a598.py
blob: e9ed033ab849a42cc1e233ebacef6113159eaf48 (plain)
1
2
3
4
5
6
7
8
def even_bit_set_number(n): 
    count = 0;res = 0;temp = n 
    while(temp > 0): 
        if (count % 2 == 1): 
            res |= (1 << count)
        count+=1
        temp >>= 1
    return (n | res)