1025:保留12位小数的浮点数

#include <bits/stdc++.h>
using namespace std;

int main()
{
    double f;
    cin>>f;
    printf("%.12lf",f);
    return 0;
}