| 提出番号 | 1101 |
|---|---|
| 提出者 | lglover |
| 言語 | C++ |
| 提出日時 | 2018-01-13 17:50:27 |
| 問題名 | (1)Odd&Even |
| 結果 | AC |
| 点数 | 100% |
| テストケース | 結果 | 得点 | 実行時間 | メモリ使用量 |
|---|---|---|---|---|
| 1 | AC | 100% | 16ms | 7296KB |
| 2 | AC | 100% | 2ms | 8720KB |
| 3 | AC | 100% | 17ms | 7456KB |
#include <iostream>
#include <string>
#include <algorithm>
#include <map>
#include <math.h>
#include <iomanip>
#include <vector>
#include <queue>
#include <functional>
#include <random>
#include <time.h>
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;
int main() {
ll x;
cin >> x;
cout << (x % 2 ? "Odd" : "Even") << endl;
return 0;
}