11 lines
109 B
Python
11 lines
109 B
Python
|
ann = input()
|
||
|
bob = input()
|
||
|
|
||
|
total = ann + bob
|
||
|
sorted_total = sorted(total)
|
||
|
|
||
|
print("".join(sorted_total))
|
||
|
|
||
|
|
||
|
|