while True:
    try:
        n = int(input())
        print(len([i for i in range(n+1) if str(i**2).endswith(str(i))]))
    except:
        break