n, x = map(int,input().split())
ans = 0
for i in range(1,n+1):
    ans += str(i).count(str(x))
print(ans)