#include <bits/stdc++.h>
using namespace std;

int main(){
    int x,y; char c; cin >> x >> c >> y;
    cout << (c == '+' ? x - y : x + y) << endl;
}