num = int(input())
count = 0
for i in range(1,num+1):
    if i % 7 == 0&nbs***bsp;'7' in str(i):
        count += 1
print(count)