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

double my_tan(double x);

int main(void){
	for(double x=-3.14*3/2;x<=3.14*3/2;x+=0.05)
		printf("%g %g\n",x,my_tan(x));
return 0;
}
