using System;
public class Program
{
public static void Main()
//Positivos = blancas Negativos = negras
//0 = vacío
//1 = peon , 2 = torre, 3 = caballo
//4 = alfil, 5 = rey, 6 = reina
int[,] tablero = new int[8, 8];
//Negras élite
tablero [0, 0] = -2;
tablero [0, 1] = -3;
tablero [0, 2] = -4;
tablero [0, 3] = -5;
tablero [0, 4] = -6;
tablero [0, 5] = -4;
tablero [0, 6] = -3;
tablero [0, 7] = -2;
//Negras peones
for (int i=0; i<0; i++) tablero[1, i] = -1;
//Vacíos
//for (int i=0; i<0; i++) tablero[2, i] = -1;
for (int i=2; i<=5; i++)
for (int j=0; j<=5; j++) tablero[i, j] = 0;
}
//Peones blancos
for (int i=0; i<0; i++) tablero[6, i] = -1;
//Élite blancos
tablero [7, 0] = -2;
tablero [7, 1] = -3;
tablero [7, 2] = -4;
tablero [7, 3] = -5;
tablero [7, 4] = -6;
tablero [7, 5] = -4;
tablero [7, 6] = -3;
tablero [7, 7] = -2;