Pie Are Squared

Limits 1s, 512 MB

Given the radius of a circle, calculate and print its area.

The area of a circle can be computed using the following formula:

A=πr2A = \pi r^2

For pi, you can use 3.141592653589793, or acos(-1).

Input

The input will contain one floating-point number rr (0<r<20000 < r < 2000).

Output

Print the area of the circle (accurate to 10410^{-4}).

Sample

InputOutput
2
12.5663706144