1
chenhaozhe
2026-01-06 63abb0801d824701b75fc7f9e947a0426c41fd18
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Pub_Class
{
    public class Cell
    {
        public int Row;
        public int Col;
    }
}