# 백준 #5524 (입실 관리) # 정수 N 입력 N = int(input()) # N번 이름 입력 for _ in range (N) : name = input() print(name.lower()) # 소문자 변환 .lower()