'''
俺认为应该放简单题里(若用python的话)
1、能被7整除
2、转成字符串后含有‘7’
'''
i=int(input())
j=0
for n in range(1,i+1):
    if n%7==0 or '7' in str(n):
        j=j+1
print(j)