题解 | #完全数计算#
完全数计算
http://www.nowcoder.com/practice/7299c12e6abb437c87ad3e712383ff84
while True:
try:
n = int(input())
count = 0
for i in range(1, n+1):
temp = []
for j in range(1, i):
if i % j == 0:
temp.append(j)
if sum(temp) == i:
count += 1
print(count)
except:
break