from turtle import*

def main():
    for i in range(3):
        fd(100)
        lt(120)

main()


