CF935A.Fafa and his Company

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Fafa owns a company that works on huge projects. There are nn employees in Fafa's company. Whenever the company has a new project to start working on, Fafa has to divide the tasks of this project among all the employees.

Fafa finds doing this every time is very tiring for him. So, he decided to choose the best ll employees in his company as team leaders. Whenever there is a new project, Fafa will divide the tasks among only the team leaders and each team leader will be responsible of some positive number of employees to give them the tasks. To make this process fair for the team leaders, each one of them should be responsible for the same number of employees. Moreover, every employee, who is not a team leader, has to be under the responsibility of exactly one team leader, and no team leader is responsible for another team leader.

Given the number of employees nn , find in how many ways Fafa could choose the number of team leaders ll in such a way that it is possible to divide employees between them evenly.

输入格式

The input consists of a single line containing a positive integer nn ( 2<=n<=1052<=n<=10^{5} ) — the number of employees in Fafa's company.

输出格式

Print a single integer representing the answer to the problem.

输入输出样例

  • 输入#1

    2
    

    输出#1

    1
    
  • 输入#2

    10
    

    输出#2

    3
    

说明/提示

In the second sample Fafa has 3 ways:

  • choose only 11 employee as a team leader with 99 employees under his responsibility.
  • choose 22 employees as team leaders with 44 employees under the responsibility of each of them.
  • choose 55 employees as team leaders with 11 employee under the responsibility of each of them.
首页