#include <iostream> #include <vector> using namespace std; void roundout(int m, int n, vector<vector<int>> mn){ int left,right,top,bottom; left = 0; right = n-1; top = 0; bottom = m-1; int i,j; int num = 0; while(true){ if(left>...