#include using namespace std; #define rep(i,n) for(int (i) = 0 ; (i) < (int)(n) ; (i)++) #define REP(i,a,b) for(int (i) = a ; (int)(i) <= (int)(b) ; (i)++) #define all(n) (n).begin(),(n).end() typedef vector Vi; typedef vector VVi; typedef pair Pii; typedef vector VPii; int main(){ string s; cin >> s; string ans = ""; for(int i = 0 ; i < s.size() ; i++){ for(int j = 0 ; j < s.size() ; j++){ swap(s[i],s[j]); ans = max(ans,s); swap(s[i],s[j]); } } cout << ans << endl; }