You are given a positive integer N. Count how many distinct values the fraction ba takes over all integers a and b with 0≤a≤b≤N. A denominator cannot be 0, so b is at least 1. Fractions with the same value are counted once. For example, 21 and 42 have the same value, so they count as one.
Input
The first line contains the number of test cases t (1≤t≤10000). Each of the next t lines contains one integer N (2≤N≤10000).
Output
For each test case, print the number of distinct rational numbers on its own line.