#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=2; c<=5; c++) { 
    GWsrect(x, y, x+100.0, y+10.0, c);
    y=y+20.0;
  };

  return 0;
}

