#arc061a. [arc061_a]Many Formulas
[arc061_a]Many Formulas
Problem Statement
You are given a string consisting of digits between 1
and 9
, inclusive. You can insert the letter +
into some of the positions (possibly none) between two letters in this string. Here, +
must not occur consecutively after insertion.
All strings that can be obtained in this way can be evaluated as formulas.
Evaluate all possible formulas, and print the sum of the results.
Constraints
- All letters in are digits between
1
and9
, inclusive.
Input
The input is given from Standard Input in the following format:
Output
Print the sum of the evaluated value over all possible formulas.
Sample Input 1
125
Sample Output 1
176
There are formulas that can be obtained: 125
, 1+25
, 12+5
and 1+2+5
. When each formula is evaluated,
Thus, the sum is .
Sample Input 2
9999999999
Sample Output 2
12656242944