#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; using P = pair; constexpr int INF = 1001001001; constexpr int mod = 1000000007; // constexpr int mod = 998244353; template inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } int cnt[20000000]; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N, D; cin >> N >> D; for(int x = 1; x <= N; ++x){ for(int y = 1; y <= N; ++y){ cnt[x * x + y * y] += 1; } } ll ans = 0; for(int z = 1; z <= N; ++z){ for(int w = 1; w <= N; ++w){ int i = D + w * w - z * z; if(i > 0) ans += cnt[i]; } } cout << ans << '\n'; return 0; }