#include #include using namespace std; using ll=long long; #define rep(i,n) for(int i=0;i=0;i--) #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} const ll MOD=1e9+7; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int M; cin>>M; vectordp(M+1); for(int i=1;i<=M;i++){ dp[i]=1; int b=1; while(b*b<=i){ if(i%b==0){ dp[i]+=dp[(i-b)/b]; if(b*b