from turtle import *
color("red")
for i in range(4):
    penup()
    fd(100)
    pendown()
    right(90)