# Arup Guha
# 2/1/2014
# Finding Arc Lengths in a Circle

# Need this to get the value of pi.
import math

# Degrees all around a circle.
WHOLE_CIRCLE = 360

def main():

    # Our initial problem.
    radius = 10
    angle = 60

    # Find the ratio of the circle we are traveling.
    ratio = angle/WHOLE_CIRCLE

    # Use this to calculate how far we go.
    arc_length = ratio*2*math.pi*radius

    # Print out the answer.
    print(arc_length)
    print("The arc length is",arc_length)

main()
