#include <cctype> #include <iostream> #include <map> #include <string> #include <unordered_map> #include <stack> using namespace std; unordered_map<char, int> m{ {'#',0},{'$',1},{'(',1},{'+',2},{'-',2},{'*',3},{'/',3} }; int calculate(int a,int b,char c); st...