yangle
2022-08-01 baaa9227a9e0b720ce2f4bca20b18d270982ee93
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;
    }
}