<?php

for ($i = 1; $i < 10 * 1024 * 1024; $i++)
{
    echo (mt_rand() / mt_getrandmax()) . '|' . (mt_rand() / mt_getrandmax()) . "\n";
}
