#include using namespace std; int main(){ int N, ans = 0; cin >> N; for(int i=1;i*i<=N;i++) { if(N%i == 0) ans += 1+(i*i != N); } cout<