# solution_equilateral_triangle.py
from turtle import *
pensize(4)

right(60)
forward(200)

right(120)
forward(200)

right(120)
forward(200)

done()
