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

[백준/파이썬] 23738번 Ресторан

by 현장 2023. 5. 14.

-Code

mosq = {'B': 'v', 'E': 'ye', 'H': 'n', 'P': 'r', 'C': 's',
        'Y': 'u', 'X': 'h'}

s = input()
res = ""

for w in s:
    if w in mosq:
        res += mosq[w]
        continue
    res += w.lower()
print(res)