Python/백준
[10995] 별 찍기 - 20
류경혜
2022. 6. 16. 16:00
N = int(input())
for i in range(N):
if i%2==0:
print("* "*N)
else:
print(" *"*N)