#include<stdio.h>
#include<stdlib.h>
#define PI 3.14159
int main()
{
double r = 0,c;
scanf_s("%lf", &r);
c = 2 * PI * r;
printf("%lf", c);
system("pause");
return 0;
}
#include<stdio.h>
#include<stdlib.h>
#define PI 3.14159
int main()
{
double r = 0,c;
scanf_s("%lf", &r);
c = 2 * PI * r;
printf("%lf", c);
system("pause");
return 0;
}