2769.Vanya and Brackets

Time Limit: 1s Memory Limit: 256MB

Vanya is doing his maths homework. He has an expression of form 2769_1.png, where x1,x2,...,xn are digits from 1 to 9, and sign 2769_2.png represents either a plus '+' or the multiplication sign '*'. Vanya needs to add one pair of brackets in this expression so that to maximize the value of the resulting expression.

Input Format(From the terminal/stdin)

Input The first line contains expression s (1 \le |s| \le 5001, |s| is odd), its odd positions only contain digits from 1 to 9, and even positions only contain signs + and . The number of signs doesn't exceed 15.

Output Format(To the terminal/stdout)

Output In the first line print the maximum possible value of an expression.

Sample Input 1

Copy
3+5*7+8*4
         \n

Sample Output 1

Copy
303
   \n

Sample Input 2

Copy
2+3*5
     \n

Sample Output 2

Copy
25
  \n

Sample Input 3

Copy
3*4*5
     \n

Sample Output 3

Copy
60
  \n

Hints

Note to the first sample test. 3+5(7+8)4=303.Note to the second sample test. (2+3)5=25.Note to the third sample test. (34)5=60 (also many other variants are valid, for instance, (3)4*5=60).

Submit

请先 登录

© 2025 FAQs