Files
CodeObject/zeta/py/completed/11656.py
2025-05-07 04:44:30 +09:00

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)