import math num1 = float(input("Enter radius: ")) area = round(math.pi * num1**2,2) print(area)