class Solution { public int solution(String s) { return Integer.parseInt(s); // String을 Integer 자료형으로 변경 } }