x = 6 y = 3 h = "+---"*x + "+" v = "| "*x + "|" for i in range(y): print(h) print(v) print(h)