fork download
  1. program tablica;
  2. var
  3. i,j:integer;
  4. begin
  5. for i:=3 to 7 do begin
  6. for j:=3 to 7 do
  7. write(i*j:3);
  8. writeln;
  9. end;
  10. end.
Success #stdin #stdout 0.01s 4112KB
stdin
Standard input is empty
stdout
  9 12 15 18 21
 12 16 20 24 28
 15 20 25 30 35
 18 24 30 36 42
 21 28 35 42 49