#include<bits/stdc++.h> using namespace std; stack<int>nums; stack<char>ops; map<char,int>pri={{'+',1},{'-',1},{'*',2},{'/',2}}; void eval(){ int b=nums.top(); nums.pop(); int a=nums.top(); nums.pop(); char op=ops.top(); ops.pop(); if(op=='+')num...