Rule
Sort one hundred digits in ascending order and print it.
Input
- You are given 100 digits in joined format.
- Input exactly matches regular expression
^\d{100}$
.
Output
- Sort the given digits in ascending order and join them, and print it.
- Space characters around the output integer are ignored.
Constraints
- The input 100 digits include at least one for each of 0 to 9.
ルール
1桁の数字100個を小さい順にソートして出力せよ。
入力
- 0から9までの整数100個が、連結されて与えられる。
- 入力は正規表現
^\d{100}$
で表現される。
出力
- 入力された整数を小さい順にソートし、連結して出力せよ。
- 出力された数の前後に含まれる空白文字は無視される。
制約
- 入力には0から9までの整数がそれぞれ必ず1個以上含まれる。