N = int(input()) ans = 0 for x in range(1,N): y = int((N**2 - x**2)**0.5) if y**2 + x**2 == N**2: ans += 1 print(ans)