#include <iostream> using namespace std; int main() { double a; scanf("%lf", &a); printf("%.3f\n", a); return 0; }