#include<bits/stdc++.h>
using namespace std;
int main()
{
    double a;
    cin>>a;
    printf("%.3lf",a);
    return 0;
}