프로그래머스. 직사각형 별찍기 파이썬 풀이

minan·2021년 6월 28일
0

프로그래머스

목록 보기
69/92

프로그래머스. Level 1. 직사각형 별찍기 파이썬 풀이

문제링크 https://programmers.co.kr/learn/courses/30/lessons/12969

a, b = map(int, input().strip().split(' '))

for i in range(b):
    print('*' * a)
profile
https://github.com/minhaaan

0개의 댓글