#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[0] != '+' && A[0] != '-' ) { long long a = atoll( A.c_str() ); st.push( a ); } else { long long y = st.top(); st.pop(); long long x = st.top(); st.pop(); if( A[0] == '+' ) st.push( x + y ); else st.push( x - y ); } } long long ans = st.top(); cout << ans << endl; }