fork(1) download
number_of_files = 3
step = 5
for n in range (0, number_of_files * step, step):
   for i in range(0, step):
       j = i + n
       print(j)
       # code goes here
Success #stdin #stdout 0.01s 27712KB
stdin
Standard input is empty
stdout
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14