# Ces programmes sont sous licence CeCILL-B V1.

from isn import *

initDrawing("Carré rouge",10,10,400,400)

for x in range(100,250 + 1):
  for y in range(50,200 + 1):
    drawPixel(x,y,255,0,0)
      
showDrawing()
