<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">n = int(input("How big should the square be? "))

for i in range(n):
    print("*" * n)


n = int(input("How big should the square be? "))

for i in range(n):
    for j in range(n):
        print("*", end="")
    print("")
</pre></body></html>