Python Program to find area of circle

Program

import math;
radius = int(input("Enter the radius of circle:\t"))
area = math.pi * radius * radius
print("The area of circle is:\t{0}".format(area))

Output

Enter the radius of circle:	6
The area of circle is:	113.097335529