#include<stdio.h>
#include<math.h>
int main(){
	double x;
	while( fscanf(stdin,"%lg",&x) != EOF ) fprintf(stdout,"%lg\n",sin(x));
return 0;}
