class Temp
{
	public static void main(String[] args)
	{

	int[][] y=
	{
	{203, 256, 240},
	{  0,   1,   2},

	{212, 247, 231},
	{  0,   1,   2},

	{182, 193, 206},
	{  0,   1,   2},

	{186, 193, 198},
	{  0,   1,   2},

	{185, 207, 214},
	{  0,   1,   2}
	};

	int treatments=3;
	int seed=132035465;
	int many=(int)1e6;
	String sided="two";

	BlockTreat.report( y,treatments,seed,many,sided );
	}
}