[Python] BOJ 15652번. N과 M (4) 작성일 2020-06-08 | In Algorithm | 15652번. N과 M (4) 문제 링크 https://www.acmicpc.net/problem/15652 풀이 코드 12345678910111213# 15652번. N과 M (4) from itertools import combinations_with_replacement n, m = map(int, input().split()) nList = [i for i in range(1, n+1)] cList = list(combinations_with_replacement(nList, m)) for c in cList: for i in c: print(i, end=' ') print(end='\n') 비고