Naruto learned a new jutsu (magical attack). The jutsu of intensity N requires chakra (energy) equal to the sum of odd divisors of N. Naruto wants to calculate the amount of chakra that will be used in this jutsu given the amount of intensity of the jutsu.
Input Format
The first line of input contains a single integer T denoting the number of test cases.
Each test case contains an integer N in a separate line.
Output Format
For each test case, print a single integer denoting the answer to that test case a new line.
Constraints
For 10, the divisors are 1, 2, 5 and 10. Hence, the sum of odd divisors is 1+5=6.