AT_abc449_a [ABC449A] π

Description

You are given a positive integer $ D $ . Find the area of a circle with diameter $ D $ .

Input Format

The input is given from Standard Input in the following format: > $ D $

Output Format

Output the answer. Your answer is considered correct if the absolute or relative error from the true answer is at most $ 10^{-6} $ .

Explanation/Hint

### Sample Explanation 1 The area of a circle with diameter $ 2 $ is $ 3.141592653589793\ldots $ . ### Constraints - $ 1\le D\le 100 $ - The input value is an integer.