101660: [AtCoder]ABC166 A - A?C
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Score : $100$ points
Problem Statement
AtCoder Inc. holds a contest every Saturday.
There are two types of contests called ABC and ARC, and just one of them is held at a time.
The company holds these two types of contests alternately: an ARC follows an ABC and vice versa.
Given a string $S$ representing the type of the contest held last week, print the string representing the type of the contest held this week.
Constraints
- $S$ is
ABC
orARC
.
Input
Input is given from Standard Input in the following format:
$S$
Output
Print the string representing the type of the contest held this week.
Sample Input 1
ABC
Sample Output 1
ARC
They held an ABC last week, so they will hold an ARC this week.