CF339A.Helpful Maths

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Xenia the beginner mathematician is a third year student at elementary school. She is now learning the addition operation.

The teacher has written down the sum of multiple numbers. Pupils should calculate the sum. To make the calculation easier, the sum only contains numbers 1, 2 and 3. Still, that isn't enough for Xenia. She is only beginning to count, so she can calculate a sum only if the summands follow in non-decreasing order. For example, she can't calculate sum 1+3+2+1 but she can calculate sums 1+1+2 and 3+3.

You've got the sum that was written on the board. Rearrange the summans and print the sum in such a way that Xenia can calculate the sum.

输入格式

The first line contains a non-empty string ss — the sum Xenia needs to count. String ss contains no spaces. It only contains digits and characters "+". Besides, string ss is a correct sum of numbers 1, 2 and 3. String ss is at most 100 characters long.

输出格式

Print the new sum that Xenia can count.

输入输出样例

  • 输入#1

    3+2+1
    

    输出#1

    1+2+3
    
  • 输入#2

    1+1+3+1+3
    

    输出#2

    1+1+1+3+3
    
  • 输入#3

    2
    

    输出#3

    2
    
首页