#include using namespace std; int main(){ int x,y; char op; cin >>x; op =cin.get(); cin>>y; if (op == '+') cout << x - y << endl; else cout << x + y << endl; }