#include <iostream>
#include <algorithm>
#include <unordered_map>
using namespace std;
int main(){
int m, n;
//cin >> n >> m;
scanf("%d%d", &n, &m);
unordered_map<int,int> mymap; //记录次数
for(int i = 0; i < n * m; i++){
int tmp;
cin >> tmp;
mymap[tmp]++;
if(mymap[tmp] * 2 > n * m){
printf("%d\n", tmp);
break;
}
}
return 0;
}