백준 32288번: 바코드 닉네임 #Python

ColorlessDia·2025년 10월 24일

algorithm/baekjoon

목록 보기
705/814
N = int(input())
S = input()

print(''.join(['i' if s == 'I' else 'L' for s in S]))

0개의 댓글