#include
#include<stdio.h>
using namespace std;
int main()
{
float x;//定义单精度浮点数
scanf("%f",&x);//输入x
printf("%.3f",x);//输出x
return 0;
}
#include
#include<stdio.h>
using namespace std;
int main()
{
float x;//定义单精度浮点数
scanf("%f",&x);//输入x
printf("%.3f",x);//输出x
return 0;
}