#include #include using namespace std; using namespace atcoder; typedef long long int ll; typedef long double ld; typedef vector vi; typedef vector vl; typedef vector vvl; typedef vector vvvl; typedef vector vvvvl; typedef vector vb; typedef vector vvb; typedef vector vvvb; typedef vector vvvvb; typedef pair pl; typedef pair ppl; typedef pair pppl; typedef pair pppppl; #define rep(i,a,b) for(int i=(a);i<(b);i++) #define rrep(i,a,b) for(int i=(b)-1;i>=(a);i--) #define all(a) begin(a),end(a) #define sz(a) (int)(a).size() #define F first #define S second #define bs(A,x) binary_search(all(A),x) #define lb(A,x) (ll)(lower_bound(all(A),x)-A.begin()) #define ub(A,x) (ll)(upper_bound(all(A),x)-A.begin()) #define cou(A,x) (ll)(upper_bound(all(A),x)-lower_bound(all(A),x)) templateusing min_priority_queue=priority_queue,greater>; templatebool chmax(T&a,T b){if(abool chmin(T&a,T b){if(b vm; typedef vector vvm; typedef vector vvvm; typedef vector vvvvm; ostream&operator<<(ostream&os,mint a){os<>(istream&is,mint&a){int x;is>>x;a=mint(x);return is;} //*/ templateostream&operator<<(ostream&os,pairp){os<istream&operator>>(istream&is,pair&p){is>>p.F>>p.S;return is;} templateostream&operator<<(ostream&os,vectorv){rep(i,0,sz(v))os<istream&operator>>(istream&is,vector&v){for(T&in:v)is>>in;return is;} mint f(ll N){ if(!N)return 0; ll n=round(sqrtl(N)); while(n*n>N)n--; while((n+1)*(n+1)<=N)n++; mint ans=n*mint(N-n*n+1)*mint(N+n*n)/2; ans+=mint(n-1)*n*(2*n-1)*(3*mint(n)*n-3*n-1)/15+3*mint(n)*n*(n-1)*(n-1)/4+mint(n)*(n-1)*(2*n-1)/6; return ans; } int main(){ cin.tie(0)->sync_with_stdio(0); cin.exceptions(cin.failbit); ll N;cin>>N; auto mypow=[](__int128 a,ll n){ __int128 res=1; while(n){ if(n&1)res*=a; a*=a; n>>=1; } return res; }; vl A; rep(k,3,61){ ll x=1; while(mypow(x,k)<=N)A.emplace_back(mypow(x++,k)); } A.emplace_back(N+1); sort(all(A)); A.erase(unique(all(A)),A.end()); mint ans=0; rep(i,0,sz(A)-1){ ll l=A[i],r=A[i+1]; mint s=1; rep(k,3,61){ ll x=round(powl(l,(ld)1/k)); while(mypow(x,k)l)x--; assert(mypow(x,k)==l); s*=x; } ans+=s*(f(r-1)-f(l-1)); } cout<