Programowanie grafiki

program koleczko;
uses crt, graph;
var s,t:integer;
begin 
  initgraph(s,t,'');
  setcolor(lightblue);
  circle(100,100,50);
  readkey;
  closegraph;
end.