// editor5
#include<stdio.h>
void main()
{
    float a,b;
    scanf("%f",&a);
    scanf("%f",&b);
    float c=a*b;
    print("%f",c);
}