Beakjoon&프로그래머스/파이썬
[프로그래머스/파이썬] 직사각형 별찍기
현장
2021. 12. 19. 16:20
-코드
a, b = map(int, input().strip().split(' '))
for i in range(b):
print('*' * a)