import math c = int(input()) x, y = map(int, input().split()) r = (y - x) / 2 R = (y + x) / 2 V = 2 * (math.pi**2) * (r**2) * R print(V * c)