Little Helena recently finished her first year of primary school. She is a model student, has straight A's, and has a huge passion for mathematics. She is currently on a well-deserved vacation with her family, but she's starting to miss her daily homework. Luckily, her older brother decided to quench her intellectual thirst, and gave her the following problem.
A valid expression is defined recursively as follows:
- the string
?
is a valid expression which represents a number. - if
and are valid expressions, then so are and , where the former represents a function returning the smaller of its two arguments, while the latter represents a function returning the larger of its two arguments.
For example, expressions
Helena is given a valid expression containing a total of
Once the question marks have been replaced by numbers, the expression can be evaluated and its value will be an integer between
Input Specification
The first and only line contains a single valid expression.
Output Specification
Output a single integer between
Constraints
For all subtasks:
Subtask | Score | Constraints |
---|---|---|
Each function in the expression has at least one question mark as an argument. | ||
No additional constraints. |
Sample Input 1
min(min(?,?),min(?,?))
Sample Output 1
1
Explanation for Sample 1
No matter how the numbers are assigned, the value of the resulting expression will always be equal to the minimum of the set
Sample Input 2
max(?,max(?,min(?,?)))
Sample Output 2
2
Explanation for Sample 2
The numbers
Sample Input 3
min(max(?,?),min(?,max(?,?)))
Sample Output 3
3
Comments