Sorting a string of numbers in python
Data structures in Python
Samiye is a second-grade elementary school student who is just learning how to add numbers. The teacher writes a series of numbers on the board for addition, and the students must calculate the sum of the desired numbers. To make the task easier, only the numbers one, two, and three are used in the addition problems. But that's not enough, the students can only do the calculation if the numbers are arranged in non-descending order (meaning first ones, then twos, and then threes). You need to read the expression written by the teacher as input and generate the output as described so that Samiye and other students can do the calculation.
سمیه کلاس دوم دبستان درس می خونه و تازه داره جمع کردن اعداد رو یاد میگیره. معلم کلاس جمع یه سری عدد رو روی تخته نوشته و دانش آموزان باید جمع اعداد مورد نظر رو حساب کنند. برای اینکه کار ساده تر بشه اعدادی که باید جمع بشن فقط یک و دو و سه هستند. اما اینم کافی نیست و دانش آموزا فقط وقتی می تونن جمع رو انجام بدن که اعداد به ترتیب غیر نزولی چیده شده باشه (یعنی اول یک ها بعد دو ها و بعد سه ها) شما باید عبارتی که معلم پای تخته نوشته را به عنوان ورودی بخوانید و در خروجی عبارتی که توضیح داده شد را تولید کنید تا سمیه و دیگر شاگردان بتوانند آن را حساب کنند.
Input Example: 1+1+3+1+3
Output Example: 1+1+1+3+3