How i can get in result this picture: Click Here
for now my code is:
program cikls;
label m;
var
a:byte;
begin
write('Ievadiet veselu skaitli:');
readln(a);
if a<1 then goto m;
repeat
writeln(a);
a:= a-1;
until a = 0;
m:
readln;
end.
When i runit it make numbers counting down. I have change number to this symbols *.