fork download
  1. AG=int(input())
  2.  
  3. for i in range(AG):
  4. for l in range(i, AG):
  5. print("* ", end="")
  6. print()
Success #stdin #stdout 0.02s 9212KB
stdin
5
stdout
* * * * * 
* * * * 
* * * 
* * 
*