#include<array.h>

int main()
{
Array<int> i; cin >> i; cout << i << endl;
sort(i); cout << i << endl;
}
