문자열 s를 숫자로 변환한 결과를 반환하는 함수, solution을 완성하세요.
class Solution { fun solution(s: String): Int { var answer = s.toInt() return answer } }