본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 6903번 Trident

by 현장 2024. 8. 27.

-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) + '*')