よじろめ覚書

私の理解度重視のソースコードです。

ABC113A - Discount Fare

問題:A - Discount Fare

#include <iostream>
using namespace std;

int main(void) {
    int x, y;

    cin.tie(0);
    ios::sync_with_stdio(false);
    cin >> x >> y;
    cout << x + y / 2;
    return 0;
}