파이썬/백준
2523번: 별찍기-13
L_SU
2022. 6. 8. 22:05
# 별찍기-13
n = int(input())
j = 0
for i in range((n*2)-1):
if i < n:
j += 1
else:
j -= 1
print("*"*j)