#include <stdio.h>
#define PI 3.14
struct Elipse{
	int a;
	int b;
}Data={5,2};
int main(void) {
	printf("area:%lf\n",PI*Data.a*Data.b);
	return 0;
}
