n = int(input()) c = 0 for i in range(1,n+1): #1 2 3 4 5 if '7' in str(i) or i%7 == 0: c += 1 print(c)