結果

提出番号 270
提出者 Nihonium_Tomopy
言語 C++
提出日時 2017-07-15 13:51:09
問題名 (1)Odd&Even
結果 AC
点数 100%

テストケース

テストケース 結果 得点 実行時間 メモリ使用量
1 AC 100% 1ms 8320KB
2 AC 100% 1ms 8304KB
3 AC 100% 2ms 7792KB

ソースコード

#include "iostream"
#include "string"
using namespace std;
int main() {
	int x;
	cin >> x;
	if (x % 2 == 1) {
		cout << "Odd" << endl;
	}
	else{
		cout << "Even" << endl;
	}
	return 0;
}