# Arup Guha
# 6/6/2022
# Equilateral Triangle via Turtle

import turtle

# Draw first side and turn.
turtle.forward(100)
turtle.left(120)

# Draw second side and turn.
turtle.forward(100)
turtle.left(120)

# Last side!
turtle.forward(100)

