#include <stdio.h>
int main()
{
    float x = 0;
    scanf("%f",&x);
    printf("%f\n",x);
    return 0;
}