from turtle import *
screensize(2000, 2000)
tracer(0)
left(90)

for i in range(2):
    fd(14)
    lt(270)
    bd(12)
    rt(90)
pu()