Submission

Status:

[PPPPPPPPPP]

Subtask/Task Score:

{100/100}

Score: 100

User: comprogslayer

Problemset: เรียงสตริง

Language: python

Time: 0.016 second

Submitted On: 2025-12-21 00:00:50

x = input()
ans = []
for e in x[0:30] :
    if e not in ans :
        ans.append(e)
ans.sort()
print((' '.join(ans)).strip())