ارسال شماره 532
x = int(input())
i = 0
while i < x:
j = 0
while j < i:
print("*", end = "")
j += 1
print("*")
i +=1
x = int(input())
i = 0
while i < x:
j = 0
while j < i:
print("*", end = "")
j += 1
print("*")
i +=1