int s[10];int main(){int i=100;while(i--){char c;scanf("%c",&c);s[c-48]++;}for(i=0;i<10;i++){while(s[i]--)printf("%d",i);}}