while True:
    try:
        print(str(bin(int(input()))).count('1'))##bin()输入为int整数、.count()的对象是字符串
    except:
        break