document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. Enter the Infix Expression : a+b*c
  2. The converted Expression in Postfix is : abc*+
  3.  
  4. Enter the Infix Expression : a+b*c/(d-e)+f
  5. The converted Expression in Postfix is : abc*de-/+f+
  6.  
  7. Enter the Infix Expression : a+b*c-d/e+f
  8. The converted Expression in Postfix is : abc*+de/-f+
');