eolymp
bolt
Try our new interface for solving problems
Problems

Factorial Again!

Factorial Again!

Mathew, an engineering freshman, is developing an original positional notation for representing integer numbers. He called it "A Curious Method" (ACM for short). The ACM notation uses the same digits as the decimal notation, i.e., 0 through 9.

To convert a number A from ACM to decimal notation you must add k terms, where k is the number of digits of A (in the ACM notation). The value of the i-th term, corresponding the i-th digit ai, counting from right to left, is ai × i!. For instance 719[ACM] is equivalent to 53[10], since 7 × 3! + 1 × 2! + 9 × 1! = 53.

Mathew has just begun studying number theory, and probably does not know which properties a numbering system should have, but at the moment he is only interested in converting a number from ACM to decimal. Could you help him?

Input

Each test case is given in a single line that contains a non-empty string of at most 5 digits, representing a number in ACM notation. The string does not have leading zeros.

The last test case is followed by a line containing one zero.

Output

For each test case output a single line containing the decimal representation of the corresponding ACM number.

Time limit 1 second
Memory limit 128 MiB
Input example #1
719
1
15
110
102
0
Output example #1
53
1
7
8
8
Source 2010 ACM South America, Latin America, Warmup Session, October 22, Problem B