a, b = map(int, input().strip().split(' '))
for i in range(b):
print("*" * a)
'Language > Python' 카테고리의 다른 글
[Python / 프로그래머스 level 1] 핸드폰 번호 가리기 (0) | 2021.06.17 |
---|---|
[Python / 프로그래머스 level 1] 하샤드 수 (0) | 2021.06.17 |
[Python / 프로그래머스 level 1] x만큼 간격이 있는 n개의 숫자 (0) | 2021.06.16 |
[Python / 프로그래머스 level 1] 최대공약수와 최소공배수 (0) | 2021.06.15 |
[Python / 프로그래머스 level 1] 행렬의 덧셈 (0) | 2021.06.15 |