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