Skip to content

Commit 1414fba

Browse files
committed
atcoder/abc181A
1 parent 53e6037 commit 1414fba

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

atcoder/abc181/A/main.cpp

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#include <bits/stdc++.h>
2+
3+
using namespace std;
4+
using ll = int64_t;
5+
using ff = long double;
6+
7+
int main() {
8+
ios_base::sync_with_stdio(false);
9+
cin.tie(0); cout.tie(0);
10+
11+
int N;
12+
cin >> N;
13+
14+
auto color = (N % 2 == 0) ? "White" : "Black";
15+
cout << color << endl;
16+
17+
return 0;
18+
}

0 commit comments

Comments
 (0)