# Function
# 1. Built in Function (print(), input(), type())
# 2. Library Funcion (Math, Turtle, Pygame)
from turtle import *
colors = ["red", "purple", "blue", "green", "yellow", "orange"]
speed("fast")
for x in range(360) :
     pencolor(colors[x % 6])
     width(x / 100 + 1)
     forward(x)
     left(59)