You are viewing a single comment's thread. Return to all comments →
from itertools import combinations_with_replacement S, K = input().split() print(*["".join(i) for i in list(combinations_with_replacement(sorted(S), int(K)))], sep = '\n')
itertools.combinations_with_replacement()
You are viewing a single comment's thread. Return to all comments →