

Time Limit: 2 sec / Memory Limit: 256 MB
配点 : 100 点
問題文
すめけくんは現在のレートが 1200 未満ならば AtCoder Beginner Contest (ABC) に、そうでなければ AtCoder Regular Contest (ARC) に参加することにしました。
すめけくんの現在のレート x が与えられます。すめけくんが参加するコンテストが ABC ならば ABC
と、そうでなければ ARC
と出力してください。
制約
- 1 ≦ x ≦ 3{,}000
- x は整数
入力
入力は以下の形式で標準入力から与えられる。
x
出力
答えを出力せよ。
入力例 1
1000
出力例 1
ABC
すめけくんの現在のレートは 1200 未満なので ABC
と出力してください。
入力例 2
2000
出力例 2
ARC
すめけくんの現在のレートは 1200 以上なので ARC
と出力してください。
Score : 100 points
Problem Statement
Smeke has decided to participate in AtCoder Beginner Contest (ABC) if his current rating is less than 1200, and participate in AtCoder Regular Contest (ARC) otherwise.
You are given Smeke's current rating, x. Print ABC
if Smeke will participate in ABC, and print ARC
otherwise.
Constraints
- 1 ≦ x ≦ 3{,}000
- x is an integer.
Input
The input is given from Standard Input in the following format:
x
Output
Print the answer.
Sample Input 1
1000
Sample Output 1
ABC
Smeke's current rating is less than 1200, thus the output should be ABC
.
Sample Input 2
2000
Sample Output 2
ARC
Smeke's current rating is not less than 1200, thus the output should be ARC
.