#include #define rep(i,n) for(int i=0;i<(n);++i) #define all(a) (a).begin(),(a).end() using namespace std; typedef long long ll; int main(){ ios::sync_with_stdio(false); cin.tie(0); string S; cin >> S; sort(all(S)); reverse(all(S)); cout << S << endl; return 0; }