wtt
2024-10-23 d85544a1ec7a6e3c36d84155c7bde4e991a08d08
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;
    }
}