• + 0 comments
    1. n = int(input())
    2. for i in range(1,n+1):
    3. s="#"*i
    4. print(s.rjust(n))
    5. in python