개발성장 기록
정답 class Solution { fun solution(my_string: String, n: Int): String { return my_string.substring(my_string.length-n, my_string.length) } }