1318 - 约数的个数
Time Limit : 1 秒
Memory Limit : 128 MB
输入一个正整数n,求n的约数的个数。n的因数(约数)不会超过10000。
Input
一个正整数n。
Output
一个正整数,表示约数的个数。
Examples
Input
6
Output
4
Hint
对于100%的数据,1< n< 1e9。