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