013

//013
#include<iostream>
using namespace std;
int main()
{
	double r,h;
	cin>>r>>h;
	cout<<3.14*r*r*h;
	return 0;
}

  

猜你喜欢

转载自www.cnblogs.com/wbyzs/p/10230125.html
013