⌨️ Algorithms/백준
[Python] 백준 2438번_별찍기 - 1
monzheld
2022. 6. 30. 21:07
https://www.acmicpc.net/problem/2438
2438번: 별 찍기 - 1
첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제
www.acmicpc.net
n = int(input())
for i in range(n):
print('*'*(i+1))