i =10while i>0:    j =1    while j<=i:    print('* ',end='')    j+=1    print('')    i-=1