/* Helloプログラム */

#include <stdio.h>
 
main()
{
	float a;
	
	a =0.1;
	
	printf("%17.15f\n" , a);
}