scripts/ege/СтатГрад № 5 Файлы/6.py
2023-05-05 00:45:01 +03:00

9 lines
153 B
Python
Vendored

from itertools import permutations
j = 1
for i in permutations("ВИКОРТ", r=6):
s = "".join(i) + " " + str(j)
j += 1
print(s)