Max Value Calculation

Learn Python by creating a mathematical expression for maximum value using string methods.

In this task, you are required to create a mathematical expression that yields the maximum possible result using three given numeric values (`a`, `b`, `c`). You can utilize "+" and "*" operators, and parentheses "(" and ")" for this purpose. Note: Every number and operator should only appear once in the expression. ### Parameters - `a`, `b`, `c`: Three integers (input parameters) to be used in the mathematical expression. ### Return Value - Returns the maximum value that can be attained from the constructed expression. ### Examples ```python # (1*2)+3 equals to 5 which is the maximum possible value from the given numbers solution(1,2,3) # Returns: 5 ```