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