#include <stdio.h>
int main()
{
    float l;
    float w;
    scanf("%f", l);
    scanf("%f", w);
    printf("%f\n", l*w);
    return 0;
}