#include <iostream>
using namespace std;
 
int main() {
    float x;
    scanf("%f", &x);
    printf("%f", x);
}