Algorithm

[백준알고리즘] 2438번 / 별찍기 - 1 (Python3/파이썬)

수노 SUNHO 2017. 10. 17. 14:54


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