#include <stdio.h> int main(){ int n,m,a[10][10],sum=0; scanf("%d%d",&n,&m); for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ scanf("%d",&a[i][j]); ...