- Time limit: 1.00 s
- Memory limit: 512 MB
Given integers, your task is to report for each integer the number of its divisors.
For example, if , the correct answer is because its divisors are .
Input
The first input line has an integer : the number of integers.
After this, there are lines, each containing an integer .
Output
For each integer, print the number of its divisors.
Constraints
Example
Input:
3 16 17 18
Output:
5 2 6