알고리즘_Algorism/Codeup
Codeup 1256 : 별 출력하기
Jye_647
2019. 7. 14. 21:52
https://codeup.kr/problem.php?id=1256
1256 : 별 출력하기
n = int(input())
for i in range(0, n):
print('*', end = '')