#abc059a. [abc059_a]Three-letter acronym
[abc059_a]Three-letter acronym
Problem Statement
You are given three words , and , each composed of lowercase English letters, with spaces in between. Print the acronym formed from the uppercased initial letters of the words.
Constraints
- , and are composed of lowercase English letters.
Input
Input is given from Standard Input in the following format:
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