print("-------------------------------------------------------------------") size = int(input("Enter the sizes of the sqaure:")) for i in range(size): for j in range(size): print("+", end=" ") print()