#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; int main() { int32_t n; cin >> n; stack stk; for (auto i = 0; i < n; ++i) { string a; cin >> a; if (a == "+") { auto y = stk.top(); stk.pop(); auto x = stk.top(); stk.pop(); stk.push(x + y); } else if (a == "-") { auto y = stk.top(); stk.pop(); auto x = stk.top(); stk.pop(); stk.push(x - y); } else { int32_t x = stoi(a); stk.push(x); } } cout << stk.top() << endl; return 0; }