Output on screen


Use write (the cursor stays on the same line), writeln (the cursor goes to the next line) .
eg.
program a1;
begin
       write('hello world!');
       writeln('hello !');
end.