#include int main(){ int N; std::cin>>N; int answer=0; for (int i=1;i<=N;i++){ if(N%i==0){ answer++; } } std::cout<