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

[백준/파이썬] 27889번 특별한 학교 이름

by 현장 2023. 4. 19.

-Code

name = {
        'NLCS':'North London Collegiate School',
        'BHA': 'Branksome Hall Asia',
        'KIS': 'Korea International School',
        'SJA': 'St. Johnsbury Academy'
    }

print(name[input()])