#include <stdio.h>
#define PI 3.141592653589793238462643383279
int main ( int argc , char * argv[] ) {
int l;
scanf("%d" , &l);
while ( l != 0 ) {
printf("%.2llf\n" , ( PI * (long double)(l/PI) * (long double)(l/PI) ) / 2 );
scanf("%d" , &l);
}
return 0;
}
Arpit's Newsletter read by 15000+ engineers
🔥 Thrice a week, in your inbox, an essay about system design, distributed systems, microservices, programming languages internals, or a deep dive on some super-clever algorithm, or just a few tips on building highly scalable distributed systems.