program egrepeat (input, output);
  var n : integer;
begin
   n:=0;
   repeat
   n:=n+1;
   until n=10;
   writeln(10);
end.


