#include int main() { int x, y; char op[2]; scanf("%d%1[+-]%d", &x, op, &y); printf("%d\n", *op=='+' ? x-y : x+y); }