#Lutece0322. Count Triangles

Count Triangles

Migrated from Lutece 322 Count Triangles

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

In a class, kennethsnow is very sleepy. To avoid falling asllep, he starts to doodle and finally gets this:

title

Now kennethsnow is very curious about how many triangles in the picture above. If he can't calculate excatly, he will fall asleep. Your task is write a program to help him solve this problem.

Input

The first line of the input contains one integer TT(1T100001\leq T\leq 10000).

Following TT lines, every line only contains one integers NN(1N1000000001\leq N\leq 100000000), indicates the length of the greatest triangle in the kennethsnow's picture.(In the picture of the description, the nn is equal to 55)

Output

For each test case, output one line. First, output Case #C: , where CC is the number of test case, from 11 to TT. Then, output the number of triangles in the picture for each test case. Since the answer may be very large, you just have to output the answer mod 2011010820110108.

Samples

5
1
2
3
4
5
Case #1: 1
Case #2: 5
Case #3: 13
Case #4: 27
Case #5: 48

Note

You may use these equations:

  1. If AA is divided by BB, $\frac{A}{B}\rm\ mod\ K = \frac{A\rm\ mod\ (B\times K)}{B}$;
  2. (A+B) mod K=A mod K+B mod K(A+B)\rm\ mod\ K = A\rm\ mod\ K + B\rm\ mod\ K
  3. $(A\times B)\rm\ mod\ K = ((A\rm\ mod\ K)\times (B\rm\ mod\ K))\rm\ mod\ K$

Resources

kennethsnow