Files
CodeObject/storage/zeta/py/completed/11656.py

7 lines
96 B
Python

I = input()
T = set()
for i in range(len(I)):
T.add(I[i:])
for t in sorted(T):
print(t)