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