You are given a positive integer $$$n$$$. Find the number of different integers $$$x$$$ such that $$$x+(x\mod n)=n$$$.
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 $$$x+(x\mod n)=n$$$.
213
1 1
In the first test case, only $$$x=1$$$ satisfies the condition.
In the second test case, only $$$x=3$$$ satisfies the condition.