#Lutece0475. Multiplication

Multiplication

Migrated from Lutece 475 Multiplication

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

Multiplying factors is one of the most tiresome jobs of algebra, so now you might want to take the help of computers to do that. In this problem you will have to deal with expression of the form, given the value of nn. To be more specific for n=2n=2 you have to find the length of the output x2+x(a1+a2)+a1a2x^2+x(a_1+a_2)+a_1a_2, for n=3n=3 you have to find the length of the output $x^3+x^2(a_1+a_2+a_3)+x(a_1a_2+a_1a_3+a_2a_3)+a_1a_2a_3$ and so on. In plain text mode this type of strings can be outputted in three lines as: $x_3+x_2(a_1+a_2+a_3)+x(a_1a_2+a_1a_3+a_2a_3)+a_1a_2a_3$

So the length of the result is 4040 when n=3n=3. As with growth of nn the length grows very fast so you don’t need to output the length but output modulo 1000010000 value of the length only. For your convenience you might want to notice that for n=10n=10 the initial part of the multiplication answer is: $x^{10}+x^9(a_1+a_2+\cdots + a_{10})+\cdots +a_1a_2a_3a_4a_5a_6a_7a_8a_9a_{10}$

Input

The input file contains at most 60006000 lines of inputs. Each line consists of a single integer nn (0<n10000000000<n\leq 1000000000). Here n means the number of factors that are to be multiplied.

Output

For each line of input produce one line of output. If the length of the multiplied string is t then for each input you should output the serial of output followed by t mod 10000t\ mod\ 10000. Please note that you don’t need to put any unnecessary brackets and also note that you don’t need to output terms like x1x_1. Show the power of xx only when it is greater than 11.

Samples

1
2
3
4
5
8
12
Case 1: 4
Case 2: 16
Case 3: 40
Case 4: 92
Case 5: 208
Case 6: 2332
Case 7: 9439

Resources

recommend by liverliu