``` public class test1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int row = sc.nextInt(); sc.nextLine(); int column = sc.nextInt(); sc.nextLine(); int num = sc.nextInt(); sc.nextLine(); LandMap landMap = new LandMap(row, column); ArrayList<Integer> out = ne...