정수 n이 주어질 때, n을 문자열로 변환하여 return하도록 solution 함수를 완성해주세요.
class Solution { public String solution(int n) { return String.valueOf(n); } }