import math radius = float(input('Enter circle radius : ')) area = math.pi * (radius**2) print(area)