#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; string s; cin>>s; sort(s.begin(),s.end()); cout << s; return 0; }