def etoiles(n):
    for k in range(n+1):
        ligne = ''
        for _ in range(k): ligne = ligne + '*'
        print( ligne )
