1965 圆柱形面积


Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 32M

Problem types
Allowed languages
C, C++, Java, Python

Description

给你圆柱形的底半径和高,求圆柱形的体积。注意pi只取3.14。

Input

多组数据,每组数据含半径R和高H的数据(满足0.00<=R,H<=99.00)。

Output

对于每组数据,输出一行圆柱形的体积,保留2位小数。

Sample

Input

49.04  86.44
12.83  56.34

Output

652747.67
29120.57

Source: qn


Comments

There are no comments at the moment.