#include "stdio.h"
#include "math.h"
int main(void) {
int num;
float x_value=0.0;
float y_value=0.0;
int a =1;
int result;
float length;
#ifndef ONLINE_JUDGE
freopen("in.txt","r",stdin);
#else
#endif
scanf("%d",&num);
while(num>0){
scanf("%G%G",&x_value,&y_value);
length = sqrt(x_value*x_value + y_value*y_value);
result =(3.1415926*length*length/100)+1;
printf("Property %d: This property will begin eroding in year %d.n", a,result);
num--;
a++;
}
printf("END OF OUTPUT.");
#ifndef ONLINE_JUDGE
fclose(stdin);
#else
#endif
return 0;
}