#!/usr/bin/python

from random import randint

counter = 0

while (counter < 100):
    print randint(0, 1000000)
    counter += 1
