#学习到的知识:在字符串中计算某个字符出现的个数:s.count('a')

while True:
    try:
        print(bin(int(input())).count('1'))
    except:
        break