← Back to List

23811번: 골뱅이 찍기 - ㅌ ↗

Solutions

Python 3
69 B | 69 chars
n = int(input())
a=("@"*n+"\n")*n
b=("@"*n*5+"\n")*n
print(2*(b+a)+b)