← Back to List

23806번: 골뱅이 찍기 - ㅁ ↗

Solutions

Python 3
88 B | 88 chars
n = int(input())
print(("@"*5*n+"\n")*n+("@"*n+" "*3*n+"@"*n+"\n")*n*3+("@"*5*n+"\n")*n)