개발자 뺚
[BAEKJOON ONLINE JUDGE] 15000번 : CAPS 본문
시간 제한 : 2 초
메모리 제한 : 512 MB
문제
Earth is under attack! Messages need to be sent to the Earth Defense Force (EDF) that makes clear that the situation is dire. The EDF’s strongest forces consist of mechs (huge bipedal robots) that are piloted by Japanese teenagers. To make sure that the messages come across as urgent, they must be displayed on the monitors of the pilots in uppercase letters. Unfortunately, the tachyon communication system that is used by the EDF is only able to send strings in lower-case alphabetic characters.
The set of lower-case alphabetic characters is made up of the following characters: ’a’, ’b’, ’c’, ’d’, ’e’, ’f’, ’g’, ’h’, ’i’, ’j’, ’k’, ’l’, ’m’, ’n’, ’o’, ’p’, ’q’, ’r’, ’s’, ’t’, ’u’, ’v’, ’w’, ’x’, ’y’, ’z’.
Your job is to write a program that converts the given messages to upper-case.
입력
- A single line containing a string of length n (10^0 ≤ n ≤ 10^6), consisting of lower-case alphabetic characters.
출력
- A single line containing the input string where all letters are converted to upper-case letters.
print(input().upper())
'Solution > Python' 카테고리의 다른 글
[BAEKJOON ONLINE JUDGE] 2845번 : 파티가 끝나고 난 뒤 (0) | 2024.06.05 |
---|---|
[BAEKJOON ONLINE JUDGE] 2752번 : 세수정렬 (1) | 2024.06.03 |
[BAEKJOON ONLINE JUDGE] 26766번 : Serca (0) | 2024.05.31 |
[BAEKJOON ONLINE JUDGE] 14928번 : 큰 수 (BIG) (0) | 2024.05.29 |
[BAEKJOON ONLINE JUDGE] 1598번 : 꼬리를 무는 숫자 나열 (0) | 2024.05.25 |