#abc053a. [abc053_a]ABC/ARC
[abc053_a]ABC/ARC
Problem Statement
Smeke has decided to participate in AtCoder Beginner Contest (ABC) if his current rating is less than , and participate in AtCoder Regular Contest (ARC) otherwise.
You are given Smeke's current rating, . Print ABC
if Smeke will participate in ABC, and print ARC
otherwise.
Constraints
- is an integer.
Input
The input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1
1000
Sample Output 1
ABC
Smeke's current rating is less than , thus the output should be ABC
.
Sample Input 2
2000
Sample Output 2
ARC
Smeke's current rating is not less than , thus the output should be ARC
.