はまやんはまやんはまやん

hamayanhamayan's blog

お年玉 [パソコン甲子園2017 予選 A]

https://onlinejudge.u-aizu.ac.jp/challenges/sources/PCK/Prelim/0357?year=2017

解法

初歩的な実装問題。

int A, B;
//---------------------------------------------------------------------------------------------------
void _main() {
    cin >> A >> B;
    int ans = (A + B) / 2;
    cout << ans << endl;
}