#include using namespace std; typedef long long LL; int main() { // 1. 入力情報取得. LL N; cin >> N; // 2. ユーザーIDの末尾につける数 X は? LL ans = 0; LL upper = sqrt(N * 1.0); for(int i = 1; i < upper + 1; i++) if(N % i == 0) ans++; ans *= 2; // N が平方数(A * A == N)であれば, A が重複してカウントされているので, 1減算. if(upper * upper == N) ans--; // 3. 終了. cout << ans << endl; return 0; }