#include <stdio.h> int main() { int n, m, i, j, x, y; int arr[10][10] = {0}; int max = 0; scanf("%d %d", &n, &m); for(i=0; i<n; ...