CF479A.Expression

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Petya studies in a school and he adores Maths. His class has been studying arithmetic expressions. On the last class the teacher wrote three positive integers aa , bb , cc on the blackboard. The task was to insert signs of operations '+' and '*', and probably brackets between the numbers so that the value of the resulting expression is as large as possible. Let's consider an example: assume that the teacher wrote numbers 1, 2 and 3 on the blackboard. Here are some ways of placing signs and brackets:

  • 1+2*3=7
  • 1*(2+3)=5
  • 1*2*3=6
  • (1+2)*3=9

Note that you can insert operation signs only between aa and bb , and between bb and cc , that is, you cannot swap integers. For instance, in the given sample you cannot get expression (1+3)*2.

It's easy to see that the maximum value that you can obtain is 9.

Your task is: given aa , bb and cc print the maximum value that you can get.

输入格式

The input contains three integers aa , bb and cc , each on a single line ( 1<=a,b,c<=101<=a,b,c<=10 ).

输出格式

Print the maximum value of the expression that you can obtain.

输入输出样例

  • 输入#1

    1
    2
    3
    

    输出#1

    9
    
  • 输入#2

    2
    10
    3
    

    输出#2

    60
    
首页