#include int main(){ std::ios::sync_with_stdio(false); std::cin.tie(0); int x, y; char op; std::cin >> x >> op >> y; std::cout << ((op=='+')?x-y:x+y) << "\n"; return 0; }