count = 1
while count < 5000000000 :
    print(count)
    count = count + 1

    for number in range( 1, 5 ) :
        print( number )