#include "bits/stdc++.h" using namespace std; int main(){ long long z; cin >>z; long long che =0; for(int i=1;i<=z;i++){ for(int j=1;i*j<=z;j++){ if(z%i==0)che++; if(z%j==0)che++; } } che/=2; cout<< che <