#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005,INF=1<<30;

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    int H,W;cin>>H>>W;
    vector<string> S(H);
    for(int i=0;i<H;i++) cin>>S[i];
    string res;
    vector<pair<int,int>> cand;
    
    res+=S[0][0];
    cand.push_back(mp(0,0));
    
    for(int t=0;t<H+W-2;t++){
        vector<pair<int,int>> nex;
        vector<pair<char,pair<int,int>>> X;
        for(auto [h,w]:cand){
            if(h+1<H){
                X.push_back(mp(S[h+1][w],mp(h+1,w)));
            }
            if(w+1<W){
                X.push_back(mp(S[h][w+1],mp(h,w+1)));
            }
        }
        sort(all(X));
        X.erase(unique(all(X)),X.end());
        
        cand.clear();
        res+=X[0].fi;
        for(int i=0;i<si(X);i++){
            if(X[i].fi!=X[0].fi) break;
            cand.push_back(X[i].se);
        }
    }
    
    cout<<res<<endl;
}