Skip to content

Commit cd009a8

Browse files
authored
atcoder solutions in cpp
1 parent 124c418 commit cd009a8

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

ABCARC.cpp

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#include <iostream>
2+
using namespace std;
3+
4+
int main() {
5+
int x;
6+
cin >> x;
7+
8+
if (x < 1200)
9+
cout << "ABC" << endl;
10+
else
11+
cout << "ARC" << endl;
12+
return 0;
13+
}

0 commit comments

Comments
 (0)