import math 

r = float(input())
circle_area = math.pi * r**2
print(f"{circle_area:.3f}")