#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const long long MAX = 5100000; const long long INF = 1LL << 60; const long long mod = 1000000007LL; //const long long mod = 998244353LL; using namespace std; typedef unsigned long long ull; typedef long long ll; int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ ll X, Y; scanf("%lld %lld", &X, &Y); vector h(10015000); for (ll i = 1; i * i <= 10005000; i++) { h[i * i] = true; } ll res = 0; for (ll r = X; r <= Y; r++) { ll tmp = 0; for (ll x = 0; x * x < r; x++) { ll y = r - x * x; if (h[y]) tmp += 4; } chmax(res, tmp); } cout << res << endl; return 0; }