카테고리 없음
Python 직각삼삿형 별찍기 int(input().strip()) 사용
Canyi
2022. 8. 23. 10:11
n = int(input().strip())
for i in range(1,n+1):
print('*'*i)