#include <iostream>
using namespace std;

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