#include using namespace std; int main() { // 1. 入力情報取得. int x, y; char op; cin >> x >> op >> y; // 2. アリスのルールで足し算, 引き算する. int ans; if(op == '-') ans = x + y; if(op == '+') ans = x - y; // 3. 出力. cout << ans << endl; return 0; }