문제 풀이 using System;public class Example{ public static void Main() { // 1. 사용자로부터 입력받기 string input = Console.ReadLine(); // 2. 입력된 문자열을 공백을 기준으로 분리하여 배열에 저장 string[] inputs = input.Split(' '); // 3. str 문자열과 n을 저장 string str = inputs[0]; int n = int.Parse(inputs[1]); // 4. 결과를 저장할 변수 초기화 string result = ""; ..