#include using namespace std; using ll = long long; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int N; cin>>N; vector S(N); for(int i=0;i>S[i]; sort(S.begin(),S.end(),[](auto const&L,auto const& R){ if(L+R<=R+L)return true; else return false; }); string T=""; for(int i=0;i