#include using namespace std; int main(void){ int x, y; char op; cin >> x >> op >> y; cout << ((op == '+') ? x - y : x + y) << endl; return 0; }