-Code
t = int(input())
s = int(input())
h = int(input())
for _ in range(t):
print('*' + ' ' * s + '*' + ' ' * s + '*')
print('*' * (3 + s * 2))
for _ in range(h):
print(' ' * (1 + s) + '*')
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 5340번 Secret Location (0) | 2024.08.29 |
---|---|
[백준/파이썬] 9771번 Word Searching (0) | 2024.08.28 |
[백준/파이썬] 6190번 Another Cow Number Game (0) | 2024.08.26 |
[백준/파이썬] 6975번 Deficient, Perfect, and Abundant (0) | 2024.08.25 |
[백준/파이썬] 27512번 스네이크 (0) | 2024.08.24 |