문제
설명
상품은 중복이나 주문 상관없는 진정한 자유(?) 순열입니다.
특히 시퀀스에서 선택할 숫자의 수인 repeat라는 인수를 사용합니다.
from sys import stdin
from itertools import product
input = lambda : stdin.readline().strip()
N, M = map(int, input().split())
A = sorted(list(map(int, input().split())))
new_A = product(A, repeat = M)
for i in new_A :
print(*i)