#include<bits/stdc++.h> using namespace std; int main(){ double r,p=3.14159; cin>>r; printf("%.4lf %.4lf %.4lf",2*r,2*p*r,p*r*r); return 0; }