문자열로 변환 : 문제 링크
#include <string> using namespace std; string solution(int n) { string answer = to_string(n); return answer; }