#include int main() { int x, y; char op; scanf("%d%c%d", &x, &op, &y); int ans = (op == '+' ? x - y : x + y); printf("%d\n", ans); return 0; }