#include <stdio.h>

int main(void) {
	float w,r;
	float g = 9.81;
	w = 6.28*getchar()/3600;
	r = g/(w*w);
	printf("r = %6.5f\n", r);
	return 0;
}
