yangle
2024-04-24 8b83671f3d3369e6313313a1b3fefdf5b6c0252f
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;
    }
}