よじろめ覚書

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

ABC086A - Product

問題:A - Product

#include <iostream>
using namespace std;

int main(void) {
    int a, b;

    cin.tie(0);
    ios::sync_with_stdio(false);
    cin >> a >> b;
    cout << ((a * b) % 2? "Odd" : "Even") << "\n";
    return 0;
}