← Back to List

23810번: 골뱅이 찍기 - 뒤집힌 ㅋ ↗

Solutions

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