#define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(v) v.begin(), v.end() typedef long long ll; #include using namespace std; int main(){ int n; cin>>n; stack s; int a,b; string x; rep(i,n){ cin>>x; if(x=="+"){ a=s.top(); s.pop(); b=s.top(); s.pop(); s.push(b+a); } else if(x=="-"){ a=s.top(); s.pop(); b=s.top(); s.pop(); s.push(b-a); } else{ int y=stoi(x); s.push(y); } } cout<