This problem's meaning is easy. Give you a infix expression, and you should convert it into postfix expression.
输入
Input one infix expression a line. Expression will include brackets( '(', ')' ), integers(0 ~ 10), alphabets('a' ~'z', 'A' ~ 'Z') and simple operators('+', '-', '*' and '/').
输出
Output every line‘s postfix expression in a line. And separate integers, alphabets and operators by ’ ‘.