mail.pas 202 B

12345678910111213
  1. var
  2. c1 : longint;
  3. out : text;
  4. begin
  5. Assign(out,'ruleez.pkt');
  6. Rewrite(out);
  7. c1 := -2147483647;
  8. repeat
  9. Write(out,'R');
  10. inc(c1);
  11. until c1 = 2147483646;
  12. Close(out);
  13. end.