def solution(seoul):
    idx = seoul.index('Kim')
    answer = "김서방은 {}에 있다".format(idx)
    return answer

+ Recent posts