OJ-Problems-Source/QUSTOJ/1869.cpp

12 lines
144 B
C++
Raw Normal View History

2016-10-24 17:03:49 +08:00
#include <iostream>
using namespace std;
int main()
{
int a;
const double pi=3.14;
cin>>a;
cout<<a*a*pi<<endl;
return 0;
}