yusijie
2023-03-17 e0a8f74603658d4d9dcb581da75aa38d3834ea77
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;
    }
}