Python
# Example of using the math module
import math

radius = 5
area = math.pi * math.pow(radius, 2)
print("Area of Circle:", area)  # Output: Area of Circle: 78.53981633974483