본문 바로가기

알고리즘 공부/백준 > Python3

[백준 파이썬] #2438: 별 찍기 - 1

https://www.acmicpc.net/problem/2438

 

2438번: 별 찍기 - 1

첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제

www.acmicpc.net

 

[정답]

count=int(input())
for i in range(1,count+1):
    print("*"*i)