#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "GrWin.h"

int main()
{
  float x, y;
  int c;

  GWopen(0);
  GWindow(0.0, 0.0, 200.0, 200.0);

  x=10.0; y=20.0;
  for(c=0; c<4; c++) { 
    GWsrect(x, y+c*20.0, x+100.0, y+10.0+c*20.0, c+2);
  };

  return 0;
}

