#include #include #include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); string n; cin >> n; string ans = n; string temp = n; for (size_t i = 0; i < n.size(); i++) { for (size_t j = i + 1; j < n.size(); j++) { if (n.at(i) < n.at(j)) { swap(temp.at(i), temp.at(j)); ans = max(ans, temp); temp = n; } } } cout << ans << endl; return 0; }