#include using namespace std; int main(){ int n; cin>>n; int ans=1; for(int i=2;i<=n;i++){ if(n/i!=n/(i-1)){ ans++; } } cout<