include<bits/stdc++.h>

using namespace std;
typedef long long ll;
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll ans=0;
int n;
cin >> n;
for (int i=1;i<=n;i++)
ans+=n/i;

cout << ans << "\n";
return 0;

}