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