#Start code here
from turtle import *
turtle = Turtle()
screen = Screen()
for i in range(4):
  turtle.forward(90)
  turtle.left(90)
