#include<stdio.h>
int main()
{
    float a,b,c;
    c=a*b;
    scanf("%.2f",&c);
    printf("%.2f",c);
    return 0;
    
}