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

0 comments

No comments so far...