
public class Main {

	
	public static void main(String args[]){
		
		Puissance4 lesgo = new Puissance4();
		
		lesgo.TakeYellow(5,2);
		lesgo.TakeYellow(3,3);
		lesgo.TakeRed(5,3);
		lesgo.TakeRed(4,3);
	}
}
