#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int64_t N; cin >> N; set> st; for (int64_t i = 1; i * i < N + 1; i++) { if (N % i == 0) { st.insert(make_pair(i, N / i)); st.insert(make_pair(N / i, i)); } } cout << st.size() << '\n'; return 0; }