# 转十进制 int(s,要转换的进制数) E.g. 16转10 int(s,16) 、8转10 int(s,8) # 十进制转二进制 bin(s) res=bin(int(input())).count('1') print(res)