0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 02:05:25 +00:00
OI-codes/AcWing/604/604.cpp

13 lines
201 B
C++

#include <bits/stdc++.h>
using namespace std;
const double pi = 3.14159;
int main() {
double r;
cin >> r;
cout << "A=" << fixed << setprecision(4) << pi * r * r << endl;
return 0;
}