#include using namespace std; using uint = unsigned int; using ll = long long; using ull = unsigned long long; template using V = vector; template using VV = V>; template using VVV = V>; template using VVVV = VV>; #define rep(i,n) for(ll i=0ll;i void chmin(T& t, const U& u) { if (t > u) t = u; } template void chmax(T& t, const U& u) { if (t < u) t = u; } // cin.tie(nullptr); // ios::sync_with_stdio(false); // cout << fixed << setprecision(20); void solve(){ ll n,d; cin >> n >> d; ll mm = n*n; ll cnt = 0; V v(4000001, 0); REP(i,1,n+1) v[i*i] = 1; REP(i,1,n+1) REP(j,1,n+1) REP(k,1,n+1){ ll a = i*i+j*j+k*k-d; if(a <= 0) break; if(a > mm) continue; cnt += v[a]; } cout << cnt << endl; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int t=1; // cin >> t; rep(i,t) solve(); }