'''
Created on Nov 21, 2011

@author: rodger
'''
import random

# generate a file of random numbers
output_file = open("../data/numbersBig10.txt", 'w')
for n in range(1,10):
    for n in range(1,5000000):
        output_file.write(str(random.randint(0,5000000)) + '\n')
output_file.close()
