You are given a positive integer $$$n$$$. Find the number of different integers $$$x$$$ such that $$$n+(x\mod n)=x$$$.
The first line of the input will contain a single integer $$$t$$$ $$$(1 \le t \le 10^4)$$$ — the total number of test cases.
Each test case contains a single integer $$$n$$$ $$$(1 \le n \le 10^{18}) $$$.
For each test case, output in a new line — the number of different integers $$$x$$$ such that $$$n+(x\mod n)=x$$$.
212
1 2
In the first test case, only $$$x=1$$$ satisfies the condition.
In the second test case, $$$x=2$$$ and $$$x=3$$$ satisfy the condition.