Problem description

Fafa owns a company that works on huge projects. There are n 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 l 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 n, find in how many ways Fafa could choose the number of team leaders l in such a way that it is possible to divide employees between them evenly.

Input

The input consists of a single line containing a positive integer n (2 ≤ n ≤ 105) — the number of employees in Fafa's company.

Output

Print a single integer representing the answer to the problem.

Examples

Input

2

Output

1

Input

10

Output

3

Note

In the second sample Fafa has 3 ways:

  • choose only 1 employee as a team leader with 9 employees under his responsibility.
  • choose 2 employees as team leaders with 4 employees under the responsibility of each of them.
  • choose 5 employees as team leaders with 1 employee under the responsibility of each of them.

解题思路:结合提示,再多举几个栗子,将会发现问题求解其实是求n的因子个数(不包括n),水过!

AC代码:

 #include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
int num=;
for(int i=;i<=n/;++i)
if(n%i==)num++;
cout<<num<<endl;
return ;
}

最新文章

  1. 2013 duilib入门简明教程 -- XML配置界面(6)
  2. C#:枚举
  3. React Test相关资料
  4. swfit中的同步锁
  5. MPP 架构数据库
  6. node.js学习(1)
  7. Error: The VPN client agent was unable to create the interprocess communication depot.
  8. weblogic服务器内存溢出问题解决
  9. Swift -- SnapKit
  10. HDU 1269 裸奔的强联通分量
  11. 在WPF中使用ArcGIS Engine
  12. 1934: [Shoi2007]Vote 善意的投票
  13. 【ztree】ztree例子
  14. python的sys模块
  15. 实用矩阵类(Matrix)(带测试)
  16. hive sql split 分隔符
  17. redis 批量删除key
  18. input输出类型
  19. ios 在https情况下,使用webview加载url出错的解决方法 ios9 适配问题
  20. java学习笔记—web计算器(36)

热门文章

  1. Linux命令(文本编辑器)
  2. Python 索引切片
  3. Django - 一对多数据示例
  4. unigui的菜单树补习【2】treeview
  5. BUPT2017 wintertraining(15) #9
  6. App架构设计经验谈:接口”安全机制”的设计
  7. ggplot画图笔记
  8. Spring Data Jpa-动态查询条件
  9. Ubuntu 17.10安装phpMyAdmin数据库管理工具
  10. AutoCAD 2014:安装时发生allied product not found错误