﻿from random import *

def Lancer(n):
    L=[]
    for i in range(n):
        L=L+[randint(1,6)]
    return L


