結果

問題 No.2415 偶数判定!Nafmoくん
ユーザー hoge
提出日時 2023-08-12 17:31:04
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 587 bytes
コンパイル時間 1,903 ms
コンパイル使用メモリ 192,712 KB
最終ジャッジ日時 2025-02-16 07:22:20
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 17 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template<class T>
using V = std::vector<T>;
#define REP(i, n) for (ll i = (ll)0; i < (ll)(n); i++)
#define REPS(i, s, n) for (ll i = (ll)(s); i < (ll)(n); i++)
#define RREP(i, n) for (ll i = (ll)(n); i > (ll)0; i--)
#define RREPS(i, s, n) for (ll i = (ll)(n); i > (ll)(s); i--)
#define ALL(c) std::begin((c)), std::end((c))
struct io {
    io() { cin.tie(0)->sync_with_stdio(0); }
} caller;

int main() {
    ll a, b;
    cin >> a >> b;

    cout << (a % 2 == 1 && b % 2 == 1 ? "Odd" : "Even") << endl;

    return 0;
}
0