#include #include typedef long long ll; int main(void) { std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(8); ll x, y; char op; std::cin >> x >> op >> y; std::cout << (op=='+' ? x-y : x+y) << std::endl; return 0; }