1. 문제https://www.acmicpc.net/problem/2231 2. 해결n = int(input())mList = []for m in range(1, n): if n == (m + sum(map(int, str(m)))): mList.append(m)if not mList: print("0")else: print(min(mList)) 3. check point1) 문제 이해M의 분해합 = NM = N의 생성자245(M) = 245 + 2 + 4 + 5 = 256(N)우리가 찾아야 하는 것은 M이다. 2) 자연수 각자리수의 합 구하기sum(map(int, str(m)))map을 사용해 문자열로 바뀐 N의 각 요소를 int로 변환한다.변환된 각 요소를 sum을 이용해..