#include <stdio.h>
#include <math.h>

int main(void) {
	int i;
	for(i=1;20*log(i/1)<86;i++);
	printf("%d %f\n",i,20*log(i/1));
	return 0;
}