Infix expression is how humans typically write arithmetic expressions like 1*2+3+4*5 which is equivalent of (1*2) + 3 + (4*5). For example given 1*2+3+4*5, return 1 2 ...