Spadework 2020. 2. 21. 09:22

* Solved 기준 브론즈2 단순 풀이

n = int(input())
for i in range(n):
	print('{}{}'.format(' ' if i%2 else '','* '*n))