# -*- encoding:utf8 -*-

# Script affichant la troisième pyramide d'astérisques

i = 10

while i > 0:
    result = (10-i) * " " + i * "*" 
    print(result)
    i = i-1