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