#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 . To be more specific for you have to find the length of the output , for 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 when . As with growth of the length grows very fast so you don’t need to output the length but output modulo value of the length only. For your convenience you might want to notice that for 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 lines of inputs. Each line consists of a single integer (). 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 . Please note that you don’t need to put any unnecessary brackets and also note that you don’t need to output terms like . Show the power of only when it is greater than .
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