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