문제풀이/프로그래머스
[프로그래머스][Lv1] - 직사각형 별찍기 (Python)
얄루몬
2021. 11. 17. 16:36
a, b = map(int, input().strip().split(' '))
for i in range(b):
print("*"*a)