#include "iostream.h"

main()

{

//AIM : to display fully a on the screen using the video memory funda

      int i;

      char far *vdumem;

      vdumem=(char far*)0xb8000000l;

      for(i=0;i<3999;*(vdumem+i)='a',i+=2);

      return 0;

}