結果

提出番号 1452
提出者 Pro_ktmr
言語 C++
提出日時 2018-08-04 12:43:51
問題名 (1)Odd&Even
結果 AC
点数 100%

テストケース

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

ソースコード

#include <iostream>
#include <fstream>
#include <stdio.h>
#include <math.h>
#include <time.h>
#include <string>
#include <vector>
#include <map>
#include <list>
#include <set>
#include <stack>
#include <queue>
#include <cstdlib>
#include <algorithm>
#include <random>
#include <cassert>
using namespace std;
#define LL long long
#undef INT_MIN
#undef INT_MAX
#define INT_MIN -2147483648
#define INT_MAX 2147483647
#define LL_MIN -9223372036854775808
#define LL_MAX 9223372036854775807
#define segment_size 65536
#define ROOP() while(true)


//1
int main() {
	int x;
	cin >> x;
	if (x % 2 == 0) cout << "Even" << endl;
	else cout << "Odd" << endl;

	return 0;
}

/*

//2
int main() {


	return 0;
}



//3
int main() {


	return 0;
}



//4
int main() {


	return 0;
}



//5
int main() {


	return 0;
}



//6
int main() {


	return 0;
}*/