Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 9 点
注意
この問題に対する言及は、2020/11/8 18:00 JST まで禁止されています。言及がなされた場合、賠償が請求される可能性があります。 試験後に総合得点や認定級を公表するのは構いませんが、どの問題が解けたかなどの情報は発信しないようにお願いします。
問題文
相異なる整数 A, B, C が与えられます。この中で 2 番目に大きいものがどれか、A
, B
, C
のいずれかで出力してください。
制約
- 1 \le A, B, C \le 100
- A, B, C は相異なる整数
入力
入力は以下の形式で標準入力から与えられる。
A B C
出力
A, B, C の中で 2 番目に大きいものはどれか、A
, B
, C
のいずれかで出力せよ。
入力例 1
15 49 7
出力例 1
A
A = 15 が 2 番目に大きいです。
入力例 2
53 2 1
出力例 2
B
Score : 9 points
Warning
Do not make any mention of this problem until November 8, 2020, 6:00 p.m. JST. In case of violation, compensation may be demanded. After the examination, you can reveal your total score and grade to others, but nothing more (for example, which problems you solved).
Problem Statement
Given are distinct integers A, B, and C. Which of them is the second greatest? Answer with A
, B
, or C
.
Constraints
- 1 \le A, B, C \le 100
- A, B, and C are distinct integers.
Input
Input is given from Standard Input in the following format:
A B C
Output
Print A
, B
, or C
to answer the question: which of A, B, and C is the second greatest?
Sample Input 1
15 49 7
Sample Output 1
A
The second greatest is A = 15.
Sample Input 2
53 2 1
Sample Output 2
B