ex74.pp 231 B

123456789101112131415
  1. Program Example74;
  2. { This program demonstrates the IntToStr function }
  3. Uses sysutils;
  4. Var I : longint;
  5. Begin
  6. For I:=0 to 31 do
  7. begin
  8. Writeln (IntToStr(1 shl I));
  9. Writeln (IntToStr(15 shl I));
  10. end;
  11. End.