from random import randrange
from ezCLI import *
tab = [[ randrange(100) for col in range(15)] for row in range(9)]
write_csv('mat.txt',tab)
