fork download
  1. program tablica;
  2. var
  3. i,j:integer;
  4. begin
  5. for i:=3 to 7 do
  6. begin
  7. for j:=3 to 7 do
  8. write(i*j:3);
  9. writeln;
  10. end;
  11. 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