summaryrefslogtreecommitdiffstats
path: root/problems/bs/inits/a.php
diff options
context:
space:
mode:
Diffstat (limited to 'problems/bs/inits/a.php')
-rw-r--r--problems/bs/inits/a.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/problems/bs/inits/a.php b/problems/bs/inits/a.php
new file mode 100644
index 0000000..3183e5d
--- /dev/null
+++ b/problems/bs/inits/a.php
@@ -0,0 +1,8 @@
+<?php
+
+ for ($i = 0; $i < 5; $i++) echo rand(1, 1000)."\n";
+ for ($i = 5; $i < 10; $i++) echo rand(1, 1000).rand(1, 1000)."\n";
+ for ($i = 10; $i < 15; $i++) echo rand(1, 1000).rand(1, 1000).rand(1, 1000)."\n";
+ for ($i = 15; $i < 20; $i++) echo rand(1, 1000).rand(1, 1000).rand(1, 1000).rand(1, 1000)."\n";
+ for ($i = 20; $i < 25; $i++) echo rand(1, 1000).rand(1, 1000).rand(1, 1000).rand(1, 1000).rand(1, 1000)."\n";
+?>