#define PI 3.14159 #include <iostream> #include <iomanip> using namespace std; int main() { double r; cin >> r; cout << fixed << setprecision(4) << 2 * r << ' ' << PI* r * r << ' ' << 2 * PI * r << endl; return 0; }