본문 바로가기
Python/코테 연습

2439

by soojitasan 2024. 6. 11. 21:29
## 2438 별찍기
n = int(input())

for i in range(1, n+1):
  print('*' * i)