#使用str.count(substr)计算字符串中特定字符出现的次数
while True:
    try:
        print(bin(int(input())).count('1'))
    except:
        break