// PascalABC.NET 3.2, сборка 1338 от 16.11.2016
uses GraphABC;
begin
var s:=ReadlnString('Укажите время MM:CC');
var m:=s.Left(2).ToInteger;
var c:=s.Right(2).ToInteger;
var i:=m;
var j:=c;
Font.Size:=60;
Font.Color:=clBlue;
repeat
while i<60 do begin<br> while j<60 do begin<br> if i<10 then s:='0'+i+':' else s:=i+':';<br> if j<10 then s+='0'+j else s+=j;<br> FillRect(50,100,350,400);
DrawTextCentered(50,100,350,400,s);
Inc(j);
Sleep(1000)
end;
j:=0;
Writeln;
Inc(i)
end;
i:=0
until False
end.