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