Create 1909.cpp

pull/45/head
Kirigaya Kazuto 2016-12-07 19:12:10 +08:00 committed by GitHub
parent 9e8020b7d2
commit f74609c1c5
1 changed files with 10 additions and 0 deletions

10
QUSTOJ/1909.cpp Normal file
View File

@ -0,0 +1,10 @@
#include <iostream>
using namespace std;
const int pi=3;
int main()
{
int a,b,c,d;
cin>>a>>b>>c>>d;
cout<<a*pi*b*b<<" "<<c*pi*d*d/3<<endl;
return 0;
}