jingh
2021-12-31 3a9bb470769f37002e4418f1463e330b4e119343
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;
    }
}