보안을 그리다, 훈이

[Baekjoon/Python3] 5524번 입실 관리 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 5524번 입실 관리

HooNeee 2020. 12. 5. 21:19

[Baekjoon/Python3] 5524번 입실 관리

 

www.acmicpc.net/problem/5524

 

5524번: 입실 관리

JOI회사에서는 방에 들어가기 위해 입실 기록을 입력할 때 알파벳으로 이름을 입력한다. 그런데, 컴퓨터에 오류가 나서 대문자 소문자가 섞여버려 입실 기록이 읽기 힘들어졌다. JOI회사의 입실

www.acmicpc.net

 

print(*[input().lower() for i in range(int(input()))], sep='\n')
Comments