from random import *
from sys import *
 
top = int(10)
 
basehand = range(1,top+1)
print type(basehand)
shuffle(basehand)
 
print basehand
for track in basehand:
    print track,