#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //#include #define rep(i,n) for(int i=0;i<(n);i++) #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() #define sz(x) ((int)(x).size()) #define pb push_back using ll = long long; using namespace std; templatebool chmax(T &a, const T &b) { if (abool chmin(T &a, const T &b) { if (b> N; stack stk; rep(i,N){ string s; cin >> s; if(s=="+"){ int a = stk.top(); stk.pop(); int b = stk.top(); stk.pop(); stk.push(b+a); } else if(s=="-"){ int a = stk.top(); stk.pop(); int b = stk.top(); stk.pop(); stk.push(b-a); } else{ int x = stoi(s); stk.push(x); } } cout << stk.top() << endl; return 0; }