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

int main()
{
	double num;

	while(EOF != scanf("%lf", &num))
	{
		printf("%lf\n", num);
	}
	
	return 0;
}