#include<stdio.h>
struct area{
    float length;
    float width;
};
int main(){
    struct area a;{
    scanf("%f%f",&a.length,&a.width);
    if(a.length<0||a.width<0)
    {
        printf("Invalid input");
        return 0;
    }
    else{
        float tot=a.length * a.width;
        
    }
    printf("%.2f",tot);
    }
    return 0;
}