11 lines
109 B
Python
Raw Normal View History

2023-12-01 13:35:13 +01:00
ann = input()
bob = input()
total = ann + bob
sorted_total = sorted(total)
print("".join(sorted_total))