Given an integer N, consider all multi-sets of positive integers such that their sum is N.
For example, if N=3, there are three possible multi-sets: 1,1,1, 1,2, and 3.
For each multi-set, calculate the cube of its size, and output the sum of all these values modulo 998,244,353.
The first line of input contains an integer T, the number of test cases (1≤T≤105).
Each test case consists of a single line containing a single integer N (1≤N≤105).
For each test case, output a single line with a single integer: the answer to the problem.
For the first case, the only possible multi-set is 1. So the answer is 13=1.
For the second case, there are two possible multi-sets: 1,1 and 2. So the answer is 23+13=9.
For the third case, there are three possible multi-sets: 1,1,1, 1,2, and 3. So the answer is 33+23+13=36.