#include using namespace std; #define rep(i,l,r) for(int i=(l);i<(r);++i) typedef long long ll; int main(){ int h,w; cin>>h>>w; vector v(h*w); rep(i,0,h*w) cin>>v[i]; sort(v.begin(),v.end()); rep(i,0,h*w){ cout<