よじろめ覚書

私の理解度重視のソースコードです。

ABC053A - ABC/ARC

問題:A - ABC/ARC

#include <iostream>
using namespace std;

int main(void) {
    int x;

    cin.tie(0);
    ios::sync_with_stdio(false);
    cin >> x;
    cout << (x < 1200? "ABC" : "ARC") << "\n";
    return 0;
}