-Code
n = int(input())
res = ""
for word in input():
if word == "I":
res += "i"
else:
res += "L"
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 30306번 Better Dice (0) | 2024.10.12 |
---|---|
[백준/파이썬] 9443번 Arrangement of Contest (0) | 2024.10.11 |
[백준/파이썬] 13773번 Olympic Games (1) | 2024.10.09 |
[백준/파이썬] 32498번 Call for Problems (0) | 2024.10.08 |
[백준/파이썬] 32458번 Just Round Down (0) | 2024.10.07 |