#800. 中缀表达式转后缀表达式

中缀表达式转后缀表达式

Background

将中缀表达式转换为后缀表达式

Description

Format

Input

.输入中缀表达式

Output

输出后缀表达式

Samples

3+4*5-8/2
3 4 5 * + 8 2 / -
37+24*(5-318)/200
37 24 5 318 - * 200 / +

Limitation

1s, 1024KiB for each test case.