3 lines
80 B
Python
3 lines
80 B
Python
|
items=[n for n in input().split('-')]
|
||
|
items.sort()
|
||
|
print('-'.join(items))
|