Kilkat

백준 2438번 python 본문

Programming/python

백준 2438번 python

KimKwangWoon 2021. 3. 17. 17:49
a = int(input())
cnt = 0
for i in range(0, a):
    print('*' * (cnt+1))
    cnt += 1

'Programming > python' 카테고리의 다른 글

백준 2446번 python  (0) 2021.03.17
백준 2523번 python  (0) 2021.03.17
백준 2444번 python  (0) 2021.03.17
백준 2440번 python  (0) 2021.03.17
백준 1546번 python  (0) 2021.03.17
Comments