본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 32288번 바코드 닉네임

by 현장 2024. 10. 10.

-Code

n = int(input())
res = ""

for word in input():
    if word == "I":
        res += "i"
    else:
        res += "L"

print(res)