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