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