Convert the infix expression to postfix expression.
输入格式:
1 line.
A correct expression include +,-,*,/,(,) and integer. Each integer is less than 10 and more than 0.
输出格式:
2 line.
The first line gives the result of expression. Keep 2 digits after the decimal point.
The second line gives the postfix expression. Use a blank space to divide every number and symbol. There is a blank space at the end of the line.
输入样例:
在这里给出一组输入。例如:
2*(3+4)/5
输出样例:
在这里给出相应的输出。例如:
2.80
2 3 4 + * 5 /