fork download
  1. program liczbyParzyste;
  2.  
  3. var i:integer;
  4. Begin
  5. FOR i:=1 to 10 do
  6. write((2*i):3);
  7. end.
Success #stdin #stdout 0s 5440KB
stdin
20
5
stdout
  2  4  6  8 10 12 14 16 18 20