while 1: try: # in m, n = map(int, input().split()) # 1 表格的行列值 x1, y1, x2, y2 = map(int, input().split()) # 2 要交换的两个单元格的行列值 a1, a2 = int(input()), int(input()) # 3 输入要插入的行的数值 4 列 x, y = map(int, input().split()) # 4 输入要查询的单元格的坐标 # out print(0 if 0 < m <= 9 and 0 < n <= 9 else -1) print(0...