while True:
    try:
        n = int(input())
        count = 0
        for i in range(1, n + 1):
            yinZi_sum = 0
            for j in range(1, i):
                if i % j == 0:
                    yinZi_sum += j
            if yinZi_sum == i:
                count += 1
        print(count)
    
    except:
        break