Codeforces-SolutionsA/Codes/339 A - Helpful Maths/339A.cpp
2023-12-31 14:54:40 +06:00

19 lines
311 B
C++

#include<bits/stdc++.h>
using namespace std;
int main()
{
int i,j,temp;
string s;
cin>>s;
for(i=0;i<s.length();i+=2)
{
for(j=i+2;j<s.length();j=j+2)
{
if(s[i]>s[j])
{
swap(s[i],s[j]);
}
}
}
cout<<s<<endl;
}