/
Time Limit: 2 sec / Memory Limit: 1024 MiB
問題文
英小文字からなる文字列 S が与えられます。S に含まれる母音をすべて大文字に置き換えた文字列を出力してください。ただし、母音とは a, e, i, o, u の 5 文字を指します。
制約
- S は英小文字からなる長さ 1 以上 100 以下の文字列
入力
入力は以下の形式で標準入力から与えられる。
S
出力
答えを出力せよ。
入力例 1
atcoder
出力例 1
AtcOdEr
atcoder に含まれる母音は a, o, e の 3 つなので、これらを大文字に置き換えた AtcOdEr を出力してください。
入力例 2
rhythm
出力例 2
rhythm
本問題では、y は母音ではないことに注意してください。
入力例 3
wow
出力例 3
wOw
本問題では、w は母音ではないことに注意してください。
Problem Statement
Given a string S consisting of lowercase English letters, make all the vowels uppercase and print the result. Here, vowels consist of five letters: a, e, i, o, and u.
Constraints
- S is a string of lowercase English letters of length between 1 and 100, inclusive.
Input
The input is given from Standard Input in the following format:
S
Output
Print the answer.
Sample Input 1
atcoder
Sample Output 1
AtcOdEr
atcoder contains three vowels a, o, and e. Make them uppercase to obtain AtcOdEr and print it.
Sample Input 2
rhythm
Sample Output 2
rhythm
Note that y is not a vowel in this problem.
Sample Input 3
wow
Sample Output 3
wOw
Note that w is not a vowel in this problem.