//  Ces programmes sont sous licence CeCILL-B V1.
void main() {
  int x, y;
  initDrawing("Carré rouge"1010400400);
  for(x = 100; x <= 250; x = x + 1)
	for(y = 50; y <= 200; y = y + 1)
	  drawPixel(x, y, 25500);
}