#include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long int ll; typedef unsigned long long ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; stack st; for(int i=0;i> s; if(s=="+"){ int p=st.top(); st.pop(); st.top()+=p; } else if(s=="-"){ int p=st.top(); st.pop(); st.top()-=p; } else{ int p=stoi(s); st.push(p); } } cout << st.top() << endl; }