Create a class called 'Calculator' for infix expression calculation using the two-stack method.
Performs the calculation by first changing the infix expression into post-fix expression. Output to the console the post-fix expression that was generated as well as the result of the expression.