#include #include #include using namespace std; #define FOR(i, a, n) for (int i = a; i < n; i++) #define REP(i, n) for(int i = 0; i < n; i++) struct omt{omt(){ios::sync_with_stdio(false);cin.tie(0);}}star; int main(){ long long n; cin >> n; int limit = sqrt(n); int cnt = 0; FOR(i, 1, limit + 1){ if(n % i == 0){ if(n / i == i) cnt += 1; else cnt += 2; } } cout << cnt << endl; return 0; }