4408: 圆的面积

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:93 Solved:29

Description

输入圆的周长c,求它的面积(π的值设置为3.14 )

圆的周长公式 C=2πr 

圆的面积公式 S= πr 

提示:1.先要根据周长公式求出r,然后根据面积公式求出s  

Input

圆的周长c

Output

圆的面积s

Sample Input Copy

10.2

Sample Output Copy

8.28

HINT