yangle
2024-04-26 1549aca4567113f86f3bc62ee6e9f08b2ed19afd
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;
    }
}