#include<bits/stdc++.h>
using namespace std;
int dp[2009][2009];
int main(){
long long cnt=0;
int n,m;
cin>>n>>m;
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
cin>>dp[i][j];
}
}
for(int i=1;i<=n;i++){
int min1=1e9;
for(int j=1;j<=m;j++){
min1=min(min1,dp[i][j]);
}
cnt+=min1;
}
cout<<cnt;
return 0;
}