A - Three-letter acronym
Editorial
/
Time Limit: 2 sec / Memory Limit: 256 MB
配点 : 100 点
問題文
英小文字からなる 3 つの単語 s_1, s_2, s_3 が空白区切りで与えられるので、単語の先頭の文字をつなげ、大文字にした略語を出力してください。
制約
- s_1, s_2, s_3 は英小文字からなる。
- 1 ≦|s_i|≦ 10 (1≦i≦3)
入力
入力は以下の形式で標準入力から与えられる。
s_1 s_2 s_3
出力
答えを出力せよ。
入力例 1
atcoder beginner contest
出力例 1
ABC
atcoder
beginner
contest
の先頭の文字はそれぞれa
b
c
なので、ABC
が答えになります。
入力例 2
resident register number
出力例 2
RRN
入力例 3
k nearest neighbor
出力例 3
KNN
入力例 4
async layered coding
出力例 4
ALC
Score : 100 points
Problem Statement
You are given three words s_1, s_2 and s_3, each composed of lowercase English letters, with spaces in between. Print the acronym formed from the uppercased initial letters of the words.
Constraints
- s_1, s_2 and s_3 are composed of lowercase English letters.
- 1 ≤ |s_i| ≤ 10 (1≤i≤3)
Input
Input is given from Standard Input in the following format:
s_1 s_2 s_3
Output
Print the answer.
Sample Input 1
atcoder beginner contest
Sample Output 1
ABC
The initial letters of atcoder
, beginner
and contest
are a
, b
and c
. Uppercase and concatenate them to obtain ABC
.
Sample Input 2
resident register number
Sample Output 2
RRN
Sample Input 3
k nearest neighbor
Sample Output 3
KNN
Sample Input 4
async layered coding
Sample Output 4
ALC