102171: [AtCoder]ABC217 B - AtCoder Quiz
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Score : $200$ points
Problem Statement
AtCoder currently holds four series of regular contests: ABC
, ARC
, AGC
, and AHC
.
What is the series of regular contests currently held by AtCoder in addition to $S_1$, $S_2$, and $S_3$?
Constraints
- Each of $S_1$, $S_2$, and $S_3$ is
ABC
,ARC
,AGC
, orAHC
. - $S_1$, $S_2$, and $S_3$ are pairwise different.
Input
Input is given from Standard Input in the following format:
$S_1$ $S_2$ $S_3$
Output
Print the answer.
Sample Input 1
ARC AGC AHC
Sample Output 1
ABC
Given in input are ARC
, AGC
, and AHC
. The rest is ABC
.
Sample Input 2
AGC ABC ARC
Sample Output 2
AHC
Input
题意翻译
有 $4$ 个字符串,分别是 "ABC" "AGC" "ARC" 和 "AHC" ,现在给出了其中的 $3$ 串,请你编程输出剩下的那一串。Output
分数:200分
问题描述
AtCoder 目前举办了四个系列的常规比赛:ABC
、ARC
、AGC
和AHC
。
除了$S_1$、$S_2$和$S_3$之外,AtCoder 目前还举办了哪些系列的常规比赛?
限制条件
- $S_1$、$S_2$和$S_3$分别代表
ABC
、ARC
、AGC
或AHC
。 - $S_1$、$S_2$和$S_3$两两不同。
输入
从标准输入以以下格式获取输入:
$S_1$ $S_2$ $S_3$
输出
打印答案。
样例输入 1
ARC AGC AHC
样例输出 1
ABC
输入给出的是ARC
、AGC
和AHC
。剩下的就是ABC
。
样例输入 2
AGC ABC ARC
样例输出 2
AHC