#include using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) int main() { ios_base::sync_with_stdio(0); cin.tie(0); int x, y; char z; cin >> x >> z >> y; if (z == '+') cout << x - y << endl; else cout << x + y << endl; return 0; }