#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using i64 = long long; using ui64 = unsigned long long; using P = pair; constexpr int INF = (1 << 30); constexpr std::int64_t INF64 = (1LL << 60); constexpr int MOD = 1e9 + 7; //constexpr std::int64_t MOD64 = 1e11 + 3; int dx[] = { -1, 0, 1, 0 }; int dy[] = { 0, 1, 0, -1 }; template static inline std::vector makeNdVector(T n, U val) noexcept { static_assert(std::is_integral::value, "[makeNdVector] 1st argument must be an integer type"); return std::vector(std::forward(n), std::forward(val)); } template static inline decltype(auto) makeNdVector(T n, Args... args) noexcept { static_assert(std::is_integral::value, "[makeNdVector] 1st argument must be an integer type"); return std::vector(args)...))>(std::forward(n), makeNdVector(std::forward(args)...)); } template void print(vector vec) { for (auto &e : vec) cout << e << " "; cout << endl; } void YES(bool f) { cout << (f ? "YES" : "NO") << endl; } void Yes(bool f) { cout << (f ? "Yes" : "No") << endl; } void yes(bool f) { cout << (f ? "yes" : "no") << endl; } template T gcd(T x, T y) { if (x == 0 || y == 0) return 0; T r; while ((r = x % y) != 0) { x = y; y = r; } return y; } template T lcm(T x, T y) { if (x == 0 || y == 0) return 0; return (x / gcd(x, y) * y); } int next_combination(int sub) { int x = sub & -sub, y = sub + x; return (((sub & ~y) / x) >> 1) | y; } std::uint64_t combination(int n, int r) { if (n < 0 || r < 0) return 0; if (n < r) return 0; std::uint64_t k = 1; for (std::uint64_t d = 1; d <= r; ++d) { k *= n--; k /= d; } return k; } signed main() { cin.tie(0); ios::sync_with_stdio(false); using P = pair; i64 N, D; cin >> N >> D; unordered_map left; vector right; for (i64 x = 1; x <= N; ++x) { for (i64 y = 1; y <= N; ++y) { left[x * x + y * y]++; right.emplace_back(D - x * x + y * y); } } i64 ans = 0; for (int i = 0; i < right.size(); ++i) { if (left.count(right[i]) == 0) continue; else ans += left[right[i]]; } cout << ans << endl; }