#include <stdio.h>

int main(void) {
	// your code goes here
	const double PT=3.14159;
	double r;
    printf("Input r:");
    scanf("%lf",&r);
	printf("circumference=%f\n",2*PT*r);
	printf("area=%f\n",PT*r*r);
	return 0;
}
