# draw a triangle
from turtle import *

forward(200)
left(120)
forward(200)
left(120)
forward(200)
left(120)

done()