  #include <stdio.h>

int main(void) {
	// your code goes here
	double pi;
	scanf("%lf",&pi);
	printf("pi=%.100f\n",pi);
	return 0;
}
